Files @ r6510:68b182bc0b88
Branch filter:

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

KUDr
(svn r9693) -Codechange [YAPF]: GetBestNode() now returns pointer to node instead of reference
/* $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,
};