src/sound/null_s.cpp
branchcustombridgeheads
changeset 5649 55c8267c933f
parent 5643 3778051e8095
child 6253 23983700e3d7
equal deleted inserted replaced
5648:1608018c5ff2 5649:55c8267c933f
       
     1 /* $Id$ */
       
     2 
       
     3 #include "../stdafx.h"
       
     4 #include "../openttd.h"
       
     5 #include "null_s.h"
       
     6 
       
     7 static const char *NullSoundStart(const char * const *parm) { return NULL; }
       
     8 static void NullSoundStop(void) {}
       
     9 
       
    10 const HalSoundDriver _null_sound_driver = {
       
    11 	NullSoundStart,
       
    12 	NullSoundStop,
       
    13 };