summaryrefslogtreecommitdiff
path: root/newgrf_sound.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-01 17:56:38 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-01 17:56:38 +0000
commit21591b5219a99a9d798c43dc2d89e7d00475f7cd (patch)
tree57eb0a57cbb2b1d07cc281291ecbcb85c71b9116 /newgrf_sound.c
parent0e0af039dbd812ca62e3a8cdac0ab8fbfd7d4005 (diff)
downloadopenttd-21591b5219a99a9d798c43dc2d89e7d00475f7cd.tar.xz
(svn r6611) - Newsounds:
- If the NewGRF sound effect chosen doesn't exist, then ignore it. - Play load/unload sound if provided.
Diffstat (limited to 'newgrf_sound.c')
-rw-r--r--newgrf_sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf_sound.c b/newgrf_sound.c
index 7d746f712..990629e82 100644
--- a/newgrf_sound.c
+++ b/newgrf_sound.c
@@ -68,6 +68,6 @@ bool PlayVehicleSound(const Vehicle *v, VehicleSoundEvent event)
if (callback == CALLBACK_FAILED) return false;
if (callback >= GetNumOriginalSounds()) callback += file->sound_offset - GetNumOriginalSounds();
- SndPlayVehicleFx(callback, v);
+ if (callback < GetNumSounds()) SndPlayVehicleFx(callback, v);
return true;
}