sound/null_s.c
author glx
Wed, 20 Sep 2006 01:08:50 +0000
changeset 4626 ce414b54bfc3
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r6486) -Fix (r6485): wrong variable name used in GetNewgrfCurrencyIdConverted()
/* $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,
};