mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-21 12:31:51 +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;
|
- (instancetype)initWithDevice:(IOHIDDeviceRef)device reportIDFilter:(NSArray <NSNumber *> *) filter serialSuffix:(NSString *)suffix;
|
||||||
- (void)elementChanged:(IOHIDElementRef) element toValue:(IOHIDValueRef) value;
|
- (void)elementChanged:(IOHIDElementRef) element toValue:(IOHIDValueRef) value;
|
||||||
- (void)disconnected;
|
- (void)disconnected;
|
||||||
|
- (void)sendReport:(NSData *)report;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation JOYMultiplayerController
|
@implementation JOYMultiplayerController
|
||||||
@@ -41,4 +42,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)sendReport:(NSData *)report
|
||||||
|
{
|
||||||
|
[[_children firstObject] sendReport:report];
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
Reference in New Issue
Block a user