summaryrefslogtreecommitdiff
path: root/sound/null.c
blob: e7d0c8c1076a3f80ff656175f91eb3b651c3c466 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "stdafx.h"
#include "openttd.h"
#include "sound/null.h"

static const char *NullSoundStart(const char * const *parm) { return NULL; }
static void NullSoundStop(void) {}

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};