Files @ r3340:baed05973439
Branch filter:

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

Darkvater
(svn r4124) - CodeChange: remove windows-specific code from initializing the random generator. There was no need for it.
/* $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,
};