1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 06:07:37 +02:00

Upgrade SPMediaKeyTap

This commit is contained in:
Leo Franchi
2012-02-25 21:25:57 -05:00
parent d641f06e6d
commit 9fe17cf6f5
3 changed files with 49 additions and 7 deletions

View File

@@ -88,11 +88,10 @@
}
-(void)printBacktrace;
{
int x;
for(x = 3; x < frameCount; x++) {
if(frameStrings[x] == NULL) { break; }
printf("%s\n", frameStrings[x]);
}
for(int x = 3; x < frameCount; x++) {
if(frameStrings[x] == NULL) { break; }
printf("%s\n", frameStrings[x]);
}
}
@end