Files @ r7073:20c5bc176074
Branch filter:

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

maedhros
(svn r10338) -Codechange: Show the total time that the timetable will take.
/* $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,
};