Files @ r4564:8ea999af52d4
Branch filter:

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

glx
(svn r6412) -Fix(r6411): forgot to remove some lines in openttd*.sln (thx michi_cc)
/* $Id$ */

#include "../stdafx.h"
#include "../openttd.h"
#include "null_s.h"

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

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};