summaryrefslogtreecommitdiff
path: root/src/newgrf_sound.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-07-02 11:28:22 +0000
committerfrosch <frosch@openttd.org>2011-07-02 11:28:22 +0000
commit4e5534f85e349d3b18a4a806365dd8712b8a0ea8 (patch)
tree14c34511a35530fd2ddce82a87b03b08969548f0 /src/newgrf_sound.h
parentff52f85b9eaaf6781cee1c1e43138b6332e7b481 (diff)
downloadopenttd-4e5534f85e349d3b18a4a806365dd8712b8a0ea8.tar.xz
(svn r22615) -Codechange: The return value of PlayTileSound() has no purpose. Remove it and document the rest.
Diffstat (limited to 'src/newgrf_sound.h')
-rw-r--r--src/newgrf_sound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_sound.h b/src/newgrf_sound.h
index 0219951ed..2f2c034db 100644
--- a/src/newgrf_sound.h
+++ b/src/newgrf_sound.h
@@ -35,6 +35,6 @@ void InitializeSoundPool();
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);
+void PlayTileSound(const struct GRFFile *file, SoundID sound_id, TileIndex tile);
#endif /* NEWGRF_SOUND_H */