summaryrefslogtreecommitdiff
path: root/src/newgrf_sound.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-05-17 19:27:50 +0000
committerrubidium <rubidium@openttd.org>2009-05-17 19:27:50 +0000
commit4a04dfc07c916cff565de54e527402a7c082b8ed (patch)
tree095bcafec29558ac8ac8df748beb40e0677b9e28 /src/newgrf_sound.h
parentceca68fca7bbd15674b88e908d5ebc7dab439bb7 (diff)
downloadopenttd-4a04dfc07c916cff565de54e527402a7c082b8ed.tar.xz
(svn r16344) -Codechange: s/FileEntry/SoundEntry/
Diffstat (limited to 'src/newgrf_sound.h')
-rw-r--r--src/newgrf_sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_sound.h b/src/newgrf_sound.h
index 7def7b280..d95691adc 100644
--- a/src/newgrf_sound.h
+++ b/src/newgrf_sound.h
@@ -21,9 +21,9 @@ enum VehicleSoundEvent {
};
-FileEntry *AllocateFileEntry();
+SoundEntry *AllocateSound();
void InitializeSoundPool();
-FileEntry *GetSound(SoundID sound_id);
+SoundEntry *GetSound(SoundID sound_id);
uint GetNumSounds();
bool PlayVehicleSound(const Vehicle *v, VehicleSoundEvent event);
bool PlayTileSound(const struct GRFFile *file, SoundID sound_id, TileIndex tile);