Mercurial > sdl-ios-xcode
annotate Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/Info.plist @ 3486:c87dbbde2bc2
Fixed bug #891
Mason Wheeler 2009-11-23 06:59:48 PST
There's code in SDL_RecreateWindow specifically to handle SDL_WINDOW_FOREIGN,
but it appears to have been overlooked in the allowed_flags constant. This
causes the line
window->flags = (flags & allowed_flags);
to strip SDL_WINDOW_FOREIGN from the window's flags, which breaks some code in
WIN_WindowProc in SDL_win32Events.c that treats foreign windows differently.
This can be trivially fixed by defining allowed_flags as
const Uint32 allowed_flags = (SDL_WINDOW_FULLSCREEN |
SDL_WINDOW_OPENGL |
SDL_WINDOW_BORDERLESS |
SDL_WINDOW_RESIZABLE |
SDL_WINDOW_INPUT_GRABBED |
SDL_WINDOW_FOREIGN);
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 24 Nov 2009 04:59:50 +0000 |
parents | d44a0a913aa2 |
children |
rev | line source |
---|---|
3331 | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
3 <plist version="1.0"> | |
4 <dict> | |
5 <key>CFBundleDevelopmentRegion</key> | |
6 <string>English</string> | |
7 <key>CFBundleExecutable</key> | |
8 <string>${EXECUTABLE_NAME}</string> | |
9 <key>CFBundleIconFile</key> | |
10 <string></string> | |
11 <key>CFBundleIdentifier</key> | |
12 <string>com.yourcompany.___PROJECTNAMEASXML___</string> | |
13 <key>CFBundleInfoDictionaryVersion</key> | |
14 <string>6.0</string> | |
15 <key>CFBundleName</key> | |
16 <string>${PRODUCT_NAME}</string> | |
17 <key>CFBundlePackageType</key> | |
18 <string>APPL</string> | |
19 <key>CFBundleSignature</key> | |
20 <string>????</string> | |
21 <key>CFBundleVersion</key> | |
22 <string>1.0</string> | |
23 <key>NSMainNibFile</key> | |
24 <string>SDLMain</string> | |
25 <key>NSPrincipalClass</key> | |
26 <string>NSApplication</string> | |
27 <key>LSMinimumSystemVersionByArchitecture</key> | |
28 <dict> | |
29 <key>x86_64</key> | |
30 <string>10.6.0</string> | |
31 <key>i386</key> | |
32 <string>10.4.0</string> | |
33 <key>ppc</key> | |
34 <string>10.4.0</string> | |
35 </dict> | |
36 </dict> | |
37 </plist> |