diff -r 28392c9a969f -r e7a464fb6d39 Source/GGBUtils.m --- a/Source/GGBUtils.m Mon Jul 14 21:00:15 2008 -0700 +++ b/Source/GGBUtils.m Sun Jan 11 00:02:27 2009 -0800 @@ -72,12 +72,12 @@ if( path ) url = [NSURL fileURLWithPath: path]; else { - NSLog(@"WARNING: Couldn't find sound %@",name); + Warn(@"Couldn't find sound %@",name); return 0; } SystemSoundID soundID; if( AudioServicesCreateSystemSoundID((CFURLRef)url,&soundID) != noErr ) { - NSLog(@"WARNING: Couldn't load sound %@",url); + Warn(@"Couldn't load sound %@",url); return 0; }