Files @ r4555:00e0118fa0b3
Branch filter:

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

bjarni
(svn r6394) -Fix r6393: removed a warning originally removed in r6376 accidentally readded in r6393
/* $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,
};