sound/null_s.c
author peter1138
Tue, 27 Dec 2005 16:37:50 +0000
changeset 2798 b0e26ead5de8
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r3346) - Increase size of aircraft refit window by one item; fixes "[ 1387477 ] Can't refit aircraft to carry Fizzy Drinks"
/* $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,
};