diff options
author | maestrodd <maestrodd@svn> | 2009-10-24 20:48:38 +0000 |
---|---|---|
committer | maestrodd <maestrodd@svn> | 2009-10-24 20:48:38 +0000 |
commit | 09609c19075c8b5f3d5cc3d277b185e62848d74a (patch) | |
tree | cd496bf2f608ed141dc6886d79ba3279e7ed0df1 /tools/EventClients/Clients | |
parent | 8edb829b355ba24bf1880192de8c33da2e75a00a (diff) |
[OSX] fixed: initialize HIDRemote in exclusive mode
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23982 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/EventClients/Clients')
-rw-r--r-- | tools/EventClients/Clients/OSXRemote/XBMCHelper.m | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m index 22b11e0d57..61c94721ae 100644 --- a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m +++ b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m @@ -36,7 +36,7 @@ if ([HIDRemote isCandelairInstallationRequiredForRemoteMode:kHIDRemoteModeExclusive]) { //setup failed. user needs to install CandelaIR driver - NSLog(@"Error! Candelair driver installation necessary. XBMC Remote control won't function properly!"); + NSLog(@"Error! Candelair driver installation necessary. XBMCHelper won't function properly!"); NSLog(@"Due to an issue in the OS version you are running, an additional driver needs to be installed before XBMC(Helper) can reliably access the remote."); NSLog(@"See http://www.candelair.com/download/ for details"); [super dealloc]; @@ -44,7 +44,7 @@ } else { - if ([remote startRemoteControl:kHIDRemoteModeExclusiveAuto]) + if ([remote startRemoteControl:kHIDRemoteModeExclusive]) { DLOG(@"Driver has started successfully."); if ([remote activeRemoteControlCount]) @@ -54,6 +54,7 @@ } else { + ELOG(@"Failed to start remote control."); //setup failed, cleanup [remote setDelegate:nil]; [super dealloc]; |