sound/null_s.c
author tron
Sun, 05 Feb 2006 09:56:04 +0000
changeset 2977 0240dd4704a7
parent 2189 d240b9097139
permissions -rw-r--r--
(svn r3552) Remove the global variable _mixer
/* $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,
};