Files @ r4596:95073ec9f671
Branch filter:

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

miham
(svn r6446) WebTranslator2 update to 2006-09-13 16:54:09
slovak - 2 fixed, 1 changed by lengyel (3)
swedish - 50 fixed by daishan (50)
/* $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,
};