mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-24 16:23:04 +02:00
Update to v096r03 release.
byuu says: Changelog: - fixed icarus to save settings properly - fixed higan's full screen toggle on OS X - increased "Add Codes" button width to avoid text clipping - implemented cocoa/canvas.cpp - added 1s delay after mapping inputs before re-enabling the window (wasn't actually necessary, but already added it) - fixed setEnabled(false) on Cocoa's ListView and TextEdit widgets - updated nall::programpath() to use GetModuleFileName on Windows - GB: system uses open collector logic, so unmapped reads return 0xFF, not 0x00 (passes blargg's cpu_instrs again) [gekkio]
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
hiro::mWindow* window;
|
||||
NSMenu* menuBar;
|
||||
NSMenu* rootMenu;
|
||||
NSMenuItem* disableGatekeeperAutoRearm;
|
||||
NSTextField* statusBar;
|
||||
}
|
||||
-(id) initWith:(hiro::mWindow&)window;
|
||||
@@ -19,6 +20,7 @@
|
||||
-(NSMenu*) menuBar;
|
||||
-(void) menuAbout;
|
||||
-(void) menuPreferences;
|
||||
-(void) menuDisableGatekeeperAutoRearm;
|
||||
-(void) menuQuit;
|
||||
-(NSTextField*) statusBar;
|
||||
@end
|
||||
@@ -28,8 +30,6 @@ namespace hiro {
|
||||
struct pWindow : pObject {
|
||||
Declare(Window, Object)
|
||||
|
||||
static auto none() -> Window&;
|
||||
|
||||
auto append(sLayout layout) -> void;
|
||||
auto append(sMenuBar menuBar) -> void;
|
||||
auto append(sStatusBar statusBar) -> void;
|
||||
@@ -54,8 +54,10 @@ struct pWindow : pObject {
|
||||
auto statusBarReposition() -> void;
|
||||
|
||||
auto _append(mWidget& widget) -> void;
|
||||
auto _geometry() -> Geometry;
|
||||
|
||||
CocoaWindow* cocoaWindow = nullptr;
|
||||
Geometry windowedGeometry;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user