Fix for OOBasicSoundSource.

git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@1352 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
Jens Ayton 2008-02-07 18:48:18 +00:00
parent 93c67d30d3
commit 4c290ac3eb

View File

@ -79,7 +79,7 @@ static NSMutableSet *sUpdateSet = nil;
- (NSString *) description
{
return [NSString stringWithFormat:@"<%@ %p>{sound=%@, loop=%s, repeatCount=%u, %@playing}", [self className], self, sound, [self loop] ? "YES" : "NO", [self repeatCount], [self isPlaying] ? @"" : @"not "];
return [NSString stringWithFormat:@"<%@ %p>{sound=%@, loop=%s, repeatCount=%u, %@playing}", [self className], self, [self sound], [self loop] ? "YES" : "NO", [self repeatCount], [self isPlaying] ? @"" : @"not "];
}