mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
(OSX) Add ObjC-1 fallbacks
This commit is contained in:
parent
3999575fc2
commit
5261ca05ba
@ -24,6 +24,13 @@
|
||||
static void* const associated_name_tag = (void*)&associated_name_tag;
|
||||
|
||||
@interface RAInputBinder : NSWindow
|
||||
{
|
||||
#if !__OBJC2__
|
||||
NSTimer* _timer;
|
||||
const rarch_setting_t *_setting;
|
||||
#endif
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) NSTimer* timer;
|
||||
@property (nonatomic, assign) const rarch_setting_t* setting;
|
||||
@end
|
||||
@ -88,6 +95,17 @@ static void* const associated_name_tag = (void*)&associated_name_tag;
|
||||
NSOutlineViewDataSource, NSOutlineViewDelegate,
|
||||
NSWindowDelegate>
|
||||
#endif
|
||||
{
|
||||
#if !__OBJC2__
|
||||
RAInputBinder* _binderWindow;
|
||||
NSButtonCell* _booleanCell;
|
||||
NSTextFieldCell* _binderCell;
|
||||
NSTableView* _table
|
||||
NSOutlineView* _outline;
|
||||
NSMutableArray* _settings;
|
||||
NSMutableArray* _currentGroup;
|
||||
#endif
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) RAInputBinder IBOutlet* binderWindow;
|
||||
@property (nonatomic, retain) NSButtonCell IBOutlet* booleanCell;
|
||||
|
Loading…
x
Reference in New Issue
Block a user