(svn r9050) -Codechange: Foo(void) -> Foo()
This commit is contained in:
		@@ -4,10 +4,10 @@
 | 
			
		||||
#include "null_m.h"
 | 
			
		||||
 | 
			
		||||
static const char* NullMidiStart(const char* const* parm) { return NULL; }
 | 
			
		||||
static void NullMidiStop(void) {}
 | 
			
		||||
static void NullMidiStop() {}
 | 
			
		||||
static void NullMidiPlaySong(const char *filename) {}
 | 
			
		||||
static void NullMidiStopSong(void) {}
 | 
			
		||||
static bool NullMidiIsSongPlaying(void) { return true; }
 | 
			
		||||
static void NullMidiStopSong() {}
 | 
			
		||||
static bool NullMidiIsSongPlaying() { return true; }
 | 
			
		||||
static void NullMidiSetVolume(byte vol) {}
 | 
			
		||||
 | 
			
		||||
const HalMusicDriver _null_music_driver = {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user