Files @ r6375:e539111ab97c
Branch filter:

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

peter1138
(svn r9438) -Codechange: Map cargo colours from DOS to Windows if necessary.
/* $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,
};