sound/null_s.c
author bjarni
Sat, 07 Jan 2006 12:53:57 +0000
changeset 2834 edb722907b73
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r3382) -Feature: [OSX] added the flag JAGUAR to crosscompile for OSX 10.2.8 on 10.4
/* $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,
};