Files @ r5861:fb8b458daaef
Branch filter:

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

rubidium
(svn r8437) -Codechange: move often duplicated (in MSU) define to the udp header.
/* $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,
};