Files @ r4809:d045782e5bcc
Branch filter:

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

miham
(svn r6733) WebTranslator2 update to 2006-10-11 11:15:30
catalan - 17 changed by arnaullv (17)
galician - 11 fixed, 7 changed by Condex (18)
greek - 1 deleted, 1 changed by gonik (2)
polish - 1 changed by meush (1)
turkish - 6 fixed by jnmbk (6)
/* $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,
};