summaryrefslogtreecommitdiff
path: root/sound/null_s.c
blob: 00f8c40396881863ff83d578109d3d220881c580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* $Id$ */

#include "stdafx.h"
#include "openttd.h"
#include "sound/null_s.h"

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

const HalSoundDriver _null_sound_driver = {
	NullSoundStart,
	NullSoundStop,
};