sound/null_s.c
author peter1138
Fri, 21 Apr 2006 07:06:31 +0000
changeset 3604 1e7d9f584f93
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r4496) - NewGRF: switch custom engine names from storing a char* to using the new StringID based text system. Vehicle name
translations now work.
/* $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,
};