Something that's been bugging me for a while, and I finally decided to do something about it: fullscreen toggle never worked on Windows. I've now made the F key do a three-way toggle between lo-res (ie standard psp resolution), hi-res (psp resolution doubled, so 960 * 544), and fullscreen (well, not exactly fullscreen, it's a window sized to your desktop's work area; if you have a weird sized desktop, you might get clipping).

This commit is contained in:
wrenczes@gmail.com
2011-04-11 00:30:50 +00:00
parent 81f22b31f5
commit 98220afb46
3 changed files with 454 additions and 404 deletions

View File

@@ -250,7 +250,7 @@ typedef enum Buttons
JGE_BTN_NEXT, // Right trigger
JGE_BTN_FULLSCREEN, // Switch to fullscreen (obviously, PC only)
JGE_BTN_MAX = JGE_BTN_NEXT + 1
JGE_BTN_MAX = JGE_BTN_FULLSCREEN + 1
} JButton;