- (void)applicationDidFinishLaunching:(NSNotification *)note
{
+ //Turn on debug mode if needed
+ if ([df boolForKey:@"ITDebugMode"]) {
+ SetITDebugMode(YES);
+ }
+
currentRemote = [self loadRemote];
[currentRemote begin];
- (void)toggleLoop
{
ITMTRemotePlayerRepeatMode repeatMode = [currentRemote repeatMode];
-
switch (repeatMode) {
case ITMTRemotePlayerRepeatOff:
repeatMode = ITMTRemotePlayerRepeatAll;