sound/null_s.c
author rubidium
Fri, 17 Nov 2006 22:15:55 +0000
changeset 5117 a4a7fd847b77
parent 2189 d240b9097139
permissions -rw-r--r--
(svn r7196) -Feature: use fontconfig so one can set the font family name in openttd.cfg instead of the full path to the font.
/* $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,
};