Source/GGBUtils.m
changeset 24 db8640a38faf
parent 16 28392c9a969f
child 27 b0affce7beb1
     1.1 --- a/Source/GGBUtils.m	Mon Jul 14 21:00:15 2008 -0700
     1.2 +++ b/Source/GGBUtils.m	Thu Jul 31 20:01:26 2008 -0700
     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