Files @ r7169:b87d36998a2d
Branch filter:

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

peter1138
(svn r10443) -Fix: randomizing triggers should be called with callback type set to 1
/* $Id$ */

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

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

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};