sound/null_s.c
author peter1138
Sun, 08 Jan 2006 16:56:41 +0000
changeset 2844 3c0e05cc5f1a
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r3392) Train depot fixes:
- Only count the parts from the source train that will be moved, not the whole train.
- Don't count articulated parts of an engine. This alleviates issues with autoreplacing very long trains.
/* $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,
};