Files @ r2185:83c584e8be30
Branch filter:

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

tron
(svn r2700) Insert Id tag into the Makefile
#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,
};