Files @ r6611:8efb6702b97b
Branch filter:

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

rubidium
(svn r9831) -Codechange: more refactoring of the loading/unloading.
/* $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,
};