From caf6fe2c9d6615f75e228dc977f101e18a089d19 Mon Sep 17 00:00:00 2001 From: vspader Date: Sun, 18 Feb 2007 23:06:23 +0000 Subject: [PATCH] Fixed methods for remote. --- AppController.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppController.m b/AppController.m index c20259a49..526ea8ac8 100644 --- a/AppController.m +++ b/AppController.m @@ -71,7 +71,7 @@ increase/decrease as long as the user holds the left/right, plus/minus button */ switch( buttonIdentifier ) { case kRemoteButtonPlay: - [self clickPlay: self]; + [self clickPlay]; break; case kRemoteButtonVolume_Plus: @@ -79,10 +79,10 @@ increase/decrease as long as the user holds the left/right, plus/minus button */ case kRemoteButtonVolume_Minus: break; case kRemoteButtonRight: - [self clickNext: self]; + [self clickNext]; break; case kRemoteButtonLeft: - [self clickPrev: self]; + [self clickPrev]; break; case kRemoteButtonRight_Hold: case kRemoteButtonLeft_Hold: