Files @ r2183:34cce39e9f47
Branch filter:

Location: cpp/openttd-patchpack/source/sound/null_s.c

tron
(svn r2697) Make compiling with SDL on Windows work again (missing #includes) and fix some warnings
#include "stdafx.h"
#include "openttd.h"
#include "sound/null_s.h"

static const char *NullSoundStart(const char * const *parm) { return NULL; }
static void NullSoundStop(void) {}

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};