sound/null_s.c
author tron
Sun, 02 Apr 2006 12:49:18 +0000
changeset 3418 a592d40a4d04
parent 2189 d240b9097139
permissions -rw-r--r--
(svn r4242) Pass TileIndex and slope to GetSlopeTileh_*() instead of TileInfo
/* $Id$ */

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