sound/null_s.c
author Darkvater
Fri, 27 Oct 2006 11:17:38 +0000
changeset 4959 9a25901ce3e6
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r6958) -Fix (r6956): GCC warning (thx Tron) and a coding style forgotten in r6957
/* $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,
};