mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-19 16:11:39 +02:00
Fix sendReport on JOYMultiplayerControlle
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
- (instancetype)initWithDevice:(IOHIDDeviceRef)device reportIDFilter:(NSArray <NSNumber *> *) filter serialSuffix:(NSString *)suffix;
|
||||
- (void)elementChanged:(IOHIDElementRef) element toValue:(IOHIDValueRef) value;
|
||||
- (void)disconnected;
|
||||
- (void)sendReport:(NSData *)report;
|
||||
@end
|
||||
|
||||
@implementation JOYMultiplayerController
|
||||
@@ -41,4 +42,9 @@
|
||||
}
|
||||
}
|
||||
|
||||
- (void)sendReport:(NSData *)report
|
||||
{
|
||||
[[_children firstObject] sendReport:report];
|
||||
}
|
||||
|
||||
@end
|
||||
|
Reference in New Issue
Block a user