sound/null.c
changeset 2171 008122046f7f
equal deleted inserted replaced
2170:b8a5a7dc0cd2 2171:008122046f7f
       
     1 #include "stdafx.h"
       
     2 #include "openttd.h"
       
     3 #include "sound/null.h"
       
     4 
       
     5 static const char *NullSoundStart(const char * const *parm) { return NULL; }
       
     6 static void NullSoundStop(void) {}
       
     7 
       
     8 const HalSoundDriver _null_sound_driver = {
       
     9 	NullSoundStart,
       
    10 	NullSoundStop,
       
    11 };