Files @ r2760:b021dc87dfb7
Branch filter:

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

truelight
(svn r3305) -Rename: Changed all instances of ottd_ related to the AI to ttai_
/* $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,
};