Made Ctrl-Alt 9 the hotkey for the new hq3x scaler, and moved the scanlines

and dotmatrix ones to Ctrl-Alt C and Ctrl-Alt-D.

(Does anyone else feel that scanlines and dotmatrix should either be
rewritten so that they can be combined with any scaler and aspect ratio
correction, or removed? That's why I moved them off the Ctrl-Alt <digit>
hotkeys.)

svn-id: r10353
This commit is contained in:
Torbjörn Andersson 2003-09-21 17:05:07 +00:00
parent df6028b17a
commit 308e88965a
5 changed files with 8 additions and 7 deletions

1
README
View file

@ -468,6 +468,7 @@ simon games.
Keyboard Arrow Keys - Simulate mouse movement
Ctrl-f - Runs in fast mode.
Ctrl-Alt 0-9 - Switch between graphics filters
Ctrl-Alt c-d - Switch between other graphics filters
Ctrl-Alt b - Switch between bilinear and non-linear
filtering [OpenGL backend]
Ctrl-Alt a - Toggle aspect-ratio correction on/off.

View file

@ -619,7 +619,7 @@ bool OSystem_SDL_Common::poll_event(Event *event) {
// Ctr-Alt-<key> will change the GFX mode
if (b == (KBD_CTRL|KBD_ALT)) {
char keys[] = "1234567890";
char keys[] = "123456789cd";
char *ptr;
ptr = strchr(keys, ev.key.keysym.sym);

View file

@ -365,7 +365,7 @@ uint32 OSystem_SDL::property(int param, Property *value) {
#endif
return 1;
} else if (param == PROP_SET_GFX_MODE) {
if (value->gfx_mode >= 10)
if (value->gfx_mode >= 11)
return 0;
_mode = value->gfx_mode;

View file

@ -651,8 +651,8 @@ uint32 OSystem_SDL_OpenGL::property(int param, Property *value) {
fb2gl.setBilinearMode(_glBilinearFilter);
break;
default: // SDL backend
if (value->gfx_mode >= 10)
return 0;
if (value->gfx_mode >= 11)
return 0;
_mode = value->gfx_mode;

View file

@ -63,9 +63,9 @@ enum {
GFX_SUPEREAGLE = 5,
GFX_ADVMAME2X = 6,
GFX_ADVMAME3X = 7,
GFX_TV2X = 8,
GFX_DOTMATRIX = 9,
GFX_HQ3X = 10,
GFX_HQ3X = 8,
GFX_TV2X = 9,
GFX_DOTMATRIX = 10,
GFX_BILINEAR = 12, // OpenGL backend