sound/null_s.c
author Darkvater
Tue, 02 May 2006 13:37:36 +0000
branch0.4
changeset 9990 2a5460a73917
parent 9959 984493ab6fff
permissions -rw-r--r--
(svn r4676) - Backport from trunk (r4505):
Fix: Ships can now be used to set up feeders as well.
/* $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,
};