Files @ r5937:5988e080bc58
Branch filter:

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

KUDr
(svn r8576) -Fix: wrong type given to MallocT (VC2003, UNICODE build)
/* $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,
};