sound/null_s.c
author tron
Sat, 05 Aug 2006 16:57:39 +0000
changeset 4226 10d7608f4c6c
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r5772) Road depots always have an player as owner, so remove an useless check
/* $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,
};