Changeset 5479
- Timestamp:
- 04/26/08 20:44:38 (3 weeks ago)
- Files:
-
- Spiral/trunk/SPAppleRemote.m (modified) (7 diffs)
- Spiral/trunk/SPWiiRemote.m (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Spiral/trunk/SPAppleRemote.m
r5472 r5479 477 477 switch(button) { 478 478 case SPAppleRemoteButtonVolumePlus: 479 if(context == SPRemotePlayer )479 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 480 480 return SPRemoteCycleSubtitleTracks; 481 481 else … … 484 484 485 485 case SPAppleRemoteButtonVolumeMinus: 486 if(context == SPRemotePlayer )486 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 487 487 return SPRemoteCycleAudioTracks; 488 488 else … … 500 500 501 501 case SPAppleRemoteButtonPlay: 502 if(context == SPRemotePlayer )502 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 503 503 return SPRemotePlayOrPause; 504 504 else … … 507 507 508 508 case SPAppleRemoteButtonRight: 509 if(context == SPRemotePlayer )509 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 510 510 return SPRemoteNext; 511 511 else … … 514 514 515 515 case SPAppleRemoteButtonLeft: 516 if(context == SPRemotePlayer )516 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 517 517 return SPRemotePrevious; 518 518 else … … 521 521 522 522 case SPAppleRemoteButtonRightHold: 523 if(context == SPRemotePlayer )523 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 524 524 return SPRemoteScanForward; 525 525 else … … 528 528 529 529 case SPAppleRemoteButtonLeftHold: 530 if(context == SPRemotePlayer )530 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 531 531 return SPRemoteScanBackward; 532 532 else Spiral/trunk/SPWiiRemote.m
r5472 r5479 189 189 190 190 case SPWiiRemoteButtonB: 191 if(context == SPRemotePlayer )191 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 192 192 return SPRemotePlayOrPause; 193 193 else … … 196 196 197 197 case SPWiiRemoteButtonA: 198 if(context == SPRemotePlayer )198 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 199 199 return SPRemotePlayOrPause; 200 200 else … … 216 216 217 217 case SPWiiRemoteButtonLeft: 218 if(context == SPRemotePlayer )218 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 219 219 return SPRemotePrevious; 220 220 else … … 223 223 224 224 case SPWiiRemoteButtonRight: 225 if(context == SPRemotePlayer )225 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 226 226 return SPRemoteNext; 227 227 else … … 230 230 231 231 case SPWiiRemoteButtonDown: 232 if(context == SPRemotePlayer )232 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 233 233 return SPRemoteStepBackward; 234 234 else … … 237 237 238 238 case SPWiiRemoteButtonUp: 239 if(context == SPRemotePlayer )239 if(context == SPRemotePlayer || context == SPRemoteFullscreenPlayer) 240 240 return SPRemoteStepForward; 241 241 else
