OpenTTD/src/sound/null_s.cpp

13 lines
245 B
C++

/* $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,
};