Files @ r6942:db62dc24a576
Branch filter:

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

miham
(svn r10196) -Update: WebTranslator2 update to 2007-06-18 10:15:44
japanese - 2 fixed by ickoonite (2)
slovenian - 3 fixed by Necrolyte (3)
/* $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,
};