vaccinewars

be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars # fast
git clone https://src.adamsgaard.dk/vaccinewars.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit ff75c12c4ffe68e12f48110b05dcb6537ab923eb
parent d01de5ab48d16a145dd0e34df1148b0230a51489
Author: Ben Webb <ben@salilab.org>
Date:   Sat, 21 Nov 2020 01:30:16 -0800

Don't crash if the sound file doesn't exist

Diffstat:
Msrc/plugins/sound_cocoa.m | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/plugins/sound_cocoa.m b/src/plugins/sound_cocoa.m @@ -52,6 +52,8 @@ static void SoundPlay_Cocoa(const gchar *snd) p = [play_by_name objectForKey:sound]; if (!p) { p = [[NSSound alloc] initWithContentsOfFile:sound byReference:YES]; + /* If the sound file doesn't exist, do nothing */ + if (!p) return; [play_by_name setObject:p forKey:sound]; } /* First, stop any currently playing sound */