fixed key combo to shrink/grow window (lost while porting to GP2X)

This commit is contained in:
zicodxx 2007-01-13 14:20:24 +00:00
parent d6592bb624
commit b6481037db
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,9 @@
D1X-Rebirth Changelog
20070113
--------
main/game.c: fixed key combo to shrink/grow window (lost while porting to GP2X)
20070110
--------
main/kconfig.c, main/newmenu.c, main/playsave.c: joystick axes can be reassigned; higher offset for axes moving detection; correction for menus that are bigger than screen; plxver correction (is actually used)

View file

@ -2753,6 +2753,7 @@ void ReadControls()
case KEY_F3: toggle_cockpit(); break;
case KEY_SHIFTED+KEY_MINUS:
case KEY_MINUS:
case KEY_ALTED+KEY_F9:
#ifdef GP2X
digi_set_digi_volume( digi_volume-2048 );
#else
@ -2761,6 +2762,7 @@ void ReadControls()
break;
case KEY_SHIFTED+KEY_EQUAL:
case KEY_EQUAL:
case KEY_ALTED+KEY_F10:
#ifdef GP2X
digi_set_digi_volume( digi_volume+2048 );
#else
@ -2996,6 +2998,7 @@ break;
case KEY_SHIFTED+KEY_MINUS:
case KEY_MINUS:
case KEY_ALTED+KEY_F9:
#ifdef GP2X
digi_set_digi_volume( digi_volume-2048 );
#else
@ -3004,6 +3007,7 @@ break;
break;
case KEY_SHIFTED+KEY_EQUAL:
case KEY_EQUAL:
case KEY_ALTED+KEY_F10:
#ifdef GP2X
digi_set_digi_volume( digi_volume+2048 );
#else