diff options
author | Filippos Karapetis | 2007-04-29 14:06:46 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-04-29 14:06:46 +0000 |
commit | 21e53116507c57f1639126cd04bd7fe9c864896c (patch) | |
tree | 387f933fba78873a98019cfdd94916bd9a5803ad | |
parent | 43779ab10cc1eda75ea5beefaff9867e7ad34d67 (diff) | |
download | scummvm-rg350-21e53116507c57f1639126cd04bd7fe9c864896c.tar.gz scummvm-rg350-21e53116507c57f1639126cd04bd7fe9c864896c.tar.bz2 scummvm-rg350-21e53116507c57f1639126cd04bd7fe9c864896c.zip |
Handle the escape key properly in KQ4. Fixes bug #1660158
svn-id: r26677
-rw-r--r-- | engines/agi/detection.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp index 97f4ecd200..8dd970b5ca 100644 --- a/engines/agi/detection.cpp +++ b/engines/agi/detection.cpp @@ -737,7 +737,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, GType_V3, - 0, + GF_ESC_MENU, 0x3086, }, @@ -753,7 +753,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, GType_V3, - 0, + GF_ESC_MENU, 0x3086, }, @@ -769,7 +769,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, GType_V3, - 0, + GF_ESC_MENU, 0x3086, }, @@ -785,7 +785,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, GType_V3, - 0, + GF_ESC_MENU, 0x3086, }, @@ -801,7 +801,7 @@ static const AGIGameDescription gameDescriptions[] = { Common::ADGF_NO_FLAGS }, GType_V3, - 0, + GF_ESC_MENU, 0x3149, }, |