aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/help.h
diff options
context:
space:
mode:
authoruruk2014-02-15 15:17:18 +0100
committeruruk2014-02-15 15:17:27 +0100
commitf8cea0ebea44c675edc2e45243649f121f362da0 (patch)
treeb6a2f6f6505445d7642ea4ded772501a3d7fc077 /engines/avalanche/help.h
parent0d62136b418c21261ecbd6a896b9d5f4d41831d5 (diff)
downloadscummvm-rg350-f8cea0ebea44c675edc2e45243649f121f362da0.tar.gz
scummvm-rg350-f8cea0ebea44c675edc2e45243649f121f362da0.tar.bz2
scummvm-rg350-f8cea0ebea44c675edc2e45243649f121f362da0.zip
AVALANCHE: Really use KeyCodes instead of ASCII values in Help.
Diffstat (limited to 'engines/avalanche/help.h')
-rw-r--r--engines/avalanche/help.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/avalanche/help.h b/engines/avalanche/help.h
index 53fe81b60e..f31a73d189 100644
--- a/engines/avalanche/help.h
+++ b/engines/avalanche/help.h
@@ -41,7 +41,8 @@ public:
private:
struct Button {
- byte _trigger, _whither;
+ Common::KeyCode _trigger;
+ byte _whither;
};
AvalancheEngine *_vm;