add new tv scanlines graphics scaler from Gregory Montoir, use -g tv2x to try it
svn-id: r6462
This commit is contained in:
parent
bd1b0d53ef
commit
c08d736d1d
7 changed files with 39 additions and 5 deletions
|
@ -481,9 +481,9 @@ bool OSystem_SDL_Common::poll_event(Event *event) {
|
|||
quit();
|
||||
break;
|
||||
}
|
||||
// Ctr-Alt-1 till Ctrl-Alt-7 will change the GFX mode
|
||||
// Ctr-Alt-1 till Ctrl-Alt-8 will change the GFX mode
|
||||
if (b == (KBD_CTRL|KBD_ALT) &&
|
||||
(ev.key.keysym.sym>='1') && (ev.key.keysym.sym<='7')) {
|
||||
(ev.key.keysym.sym>='1') && (ev.key.keysym.sym<='8')) {
|
||||
Property prop;
|
||||
prop.gfx_mode = ev.key.keysym.sym - '1';
|
||||
property(PROP_SET_GFX_MODE, &prop);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue