Files @ r6860:4a7396956c63
Branch filter:

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

truelight
(svn r10100) -Fix r10093: some code now became obsolete as it never did something
/* $Id$ */

#include "../stdafx.h"
#include "null_s.h"

static const char *NullSoundStart(const char * const *parm) { return NULL; }
static void NullSoundStop() {}

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};