mirror of
https://github.com/OpenTTD/OpenTTD
synced 2026-01-16 17:02:37 +01:00
13 lines
245 B
C++
13 lines
245 B
C++
/* $Id$ */
|
|
|
|
#include "../stdafx.h"
|
|
#include "null_s.h"
|
|
|
|
static const char *NullSoundStart(const char * const *parm) { return NULL; }
|
|
static void NullSoundStop() {}
|
|
|
|
const HalSoundDriver _null_sound_driver = {
|
|
NullSoundStart,
|
|
NullSoundStop,
|
|
};
|