1.1 --- a/Source/GGBUtils.m Mon Jul 14 21:00:15 2008 -0700
1.2 +++ b/Source/GGBUtils.m Sun Jan 11 00:02:27 2009 -0800
1.3 @@ -72,12 +72,12 @@
1.4 if( path )
1.5 url = [NSURL fileURLWithPath: path];
1.6 else {
1.7 - NSLog(@"WARNING: Couldn't find sound %@",name);
1.8 + Warn(@"Couldn't find sound %@",name);
1.9 return 0;
1.10 }
1.11 SystemSoundID soundID;
1.12 if( AudioServicesCreateSystemSoundID((CFURLRef)url,&soundID) != noErr ) {
1.13 - NSLog(@"WARNING: Couldn't load sound %@",url);
1.14 + Warn(@"Couldn't load sound %@",url);
1.15 return 0;
1.16 }
1.17