mirror of https://github.com/stella-emu/stella.git
Set Xcode project back to Deployment mode, so optimization is turned on, as this was accidently left off for the 2.1.0 release. Also, fixed issue with video size menu items.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@990 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
4bdf5dfbf7
commit
31c0d39ecf
|
@ -4,7 +4,7 @@
|
|||
Mark Grebe <atarimac@cox.net>
|
||||
|
||||
*/
|
||||
/* $Id: Menus.m,v 1.10 2005-10-15 19:02:15 markgrebe Exp $ */
|
||||
/* $Id: Menus.m,v 1.11 2006-01-29 23:06:10 markgrebe Exp $ */
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import "SDL.h"
|
||||
|
@ -122,12 +122,12 @@ static Menus *sharedInstance = nil;
|
|||
|
||||
- (IBAction)biggerScreen:(id)sender
|
||||
{
|
||||
[self pushKeyEvent:SDLK_EQUALS:YES:YES];
|
||||
[self pushKeyEvent:SDLK_EQUALS:NO:YES];
|
||||
}
|
||||
|
||||
- (IBAction)smallerScreen:(id)sender
|
||||
{
|
||||
[self pushKeyEvent:SDLK_MINUS:YES:YES];
|
||||
[self pushKeyEvent:SDLK_MINUS:NO:YES];
|
||||
}
|
||||
|
||||
- (IBAction)fullScreen:(id)sender
|
||||
|
|
|
@ -287,7 +287,7 @@
|
|||
<key>CFBundleExecutable</key>
|
||||
<string>StellaOSX</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.0</string>
|
||||
<string>2.1.0a</string>
|
||||
<key>CFBundleHelpBookFolder</key>
|
||||
<string>docs</string>
|
||||
<key>CFBundleHelpBookName</key>
|
||||
|
@ -299,13 +299,13 @@
|
|||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>StellaOSX 2.1.0</string>
|
||||
<string>StellaOSX 2.1.0a</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>StLa</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.0</string>
|
||||
<string>2.1.0a</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>SDLMain.nib</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
|
Loading…
Reference in New Issue