Files @ r6135:faa4b23c104c
Branch filter:

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

rubidium
(svn r8877) -Cleanup: remove already implemented @todo
/* $Id$ */

#include "../stdafx.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,
};