Skip to content

Commit

Permalink
MacOS: Fix building in Xcode 15.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBuckley committed Jul 14, 2024
1 parent 18096d9 commit 43b6efb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions macosx/Snes9x/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
gameWindow.contentView.layer.backgroundColor = NSColor.blackColor.CGColor;

gameWindow.title = @"Snes9x";
gameWindow.restorationClass = [self class];
gameWindow.frameAutosaveName = kMainWindowIdentifier;
gameWindow.releasedWhenClosed = NO;
gameWindow.backgroundColor = NSColor.clearColor;
Expand Down Expand Up @@ -660,7 +659,6 @@ - (IBAction)openCheatsWindow:(id)sender
window = self.cheatsWindowController.window;

window.title = NSLocalizedString(@"Cheats", nil);
window.restorationClass = self.class;
window.frameAutosaveName = kCheatsWindowIdentifier;
window.releasedWhenClosed = NO;

Expand Down Expand Up @@ -695,7 +693,6 @@ - (IBAction)openCheatFinderWindow:(id)sender
window = self.cheatFinderWindowController.window;

window.title = NSLocalizedString(@"Cheat Finder", nil);
window.restorationClass = self.class;
window.frameAutosaveName = kCheatFinderWindowIdentifier;
window.releasedWhenClosed = NO;

Expand Down

0 comments on commit 43b6efb

Please sign in to comment.