src/newgrf_sound.cpp
changeset 6573 7624f942237f
parent 6450 1c2016673250
child 6303 84c215fc8eb8
child 6658 59048224be55
--- a/src/newgrf_sound.cpp	Tue Mar 06 23:42:30 2007 +0000
+++ b/src/newgrf_sound.cpp	Wed Mar 07 11:47:46 2007 +0000
@@ -15,7 +15,7 @@
 
 
 /* Allocate a new FileEntry */
-FileEntry *AllocateFileEntry(void)
+FileEntry *AllocateFileEntry()
 {
 	if (_sound_count == GetSoundInternalPoolSize()) {
 		if (!AddBlockToPool(&_SoundInternal_pool)) return NULL;
@@ -25,7 +25,7 @@
 }
 
 
-void InitializeSoundPool(void)
+void InitializeSoundPool()
 {
 	CleanPool(&_SoundInternal_pool);
 	_sound_count = 0;
@@ -42,7 +42,7 @@
 }
 
 
-uint GetNumSounds(void)
+uint GetNumSounds()
 {
 	return _sound_count;
 }