diff options
author | Marcus Comstedt | 2002-02-02 23:30:20 +0000 |
---|---|---|
committer | Marcus Comstedt | 2002-02-02 23:30:20 +0000 |
commit | 971eb209b05eb87f893b82b66339c75986e197f2 (patch) | |
tree | eecc97dc181e0aee6335205754c774d27439d28b | |
parent | 01c4ef997ca17705cfba205057adc9271ba52c66 (diff) | |
download | scummvm-rg350-971eb209b05eb87f893b82b66339c75986e197f2.tar.gz scummvm-rg350-971eb209b05eb87f893b82b66339c75986e197f2.tar.bz2 scummvm-rg350-971eb209b05eb87f893b82b66339c75986e197f2.zip |
Three finger salute now brings up boot menu.
svn-id: r3555
-rw-r--r-- | dc/input.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dc/input.cpp b/dc/input.cpp index 7f3ee3b3fd..1c78d19460 100644 --- a/dc/input.cpp +++ b/dc/input.cpp @@ -88,6 +88,10 @@ void handleInput(struct mapledev *pad, int16 &mouse_x, int16 &mouse_y, newkey = 9; break; case 0x2c: newkey = ' '; break; + case 0x4c: + if((shift & 0x11) && (shift & 0x44)) + exit(0); + break; case 0x4f: mouse_x++; break; case 0x50: |