mirror of
https://github.com/libretro/RetroArch
synced 2025-04-11 00:44:20 +00:00
(OSX) Xcode 3.2 build fixes
This commit is contained in:
parent
5261ca05ba
commit
f26054f82c
@ -100,7 +100,7 @@ NSWindowDelegate>
|
|||||||
RAInputBinder* _binderWindow;
|
RAInputBinder* _binderWindow;
|
||||||
NSButtonCell* _booleanCell;
|
NSButtonCell* _booleanCell;
|
||||||
NSTextFieldCell* _binderCell;
|
NSTextFieldCell* _binderCell;
|
||||||
NSTableView* _table
|
NSTableView* _table;
|
||||||
NSOutlineView* _outline;
|
NSOutlineView* _outline;
|
||||||
NSMutableArray* _settings;
|
NSMutableArray* _settings;
|
||||||
NSMutableArray* _currentGroup;
|
NSMutableArray* _currentGroup;
|
||||||
|
@ -65,7 +65,8 @@ static RAScreen* get_chosen_screen(void)
|
|||||||
return RAScreen.mainScreen;
|
return RAScreen.mainScreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (RAScreen*)[RAScreen.screens objectAtIndex:g_settings.video.monitor_index];
|
NSArray *screens = [RAScreen screens];
|
||||||
|
return (RAScreen*)[screens objectAtIndex:g_settings.video.monitor_index];
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user