summaryrefslogtreecommitdiff
path: root/src/hotkeys.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-07-03 13:42:27 +0000
committeryexo <yexo@openttd.org>2010-07-03 13:42:27 +0000
commit70a35a94b5151b87ef8f79a60c40a9d5b1b2590a (patch)
tree17261eb752b24070d8ec12ecfc7a9941eb975396 /src/hotkeys.h
parentda57796d51906f8b422fd52f68c776e39116b5aa (diff)
downloadopenttd-70a35a94b5151b87ef8f79a60c40a9d5b1b2590a.tar.xz
(svn r20059) -Feature: customizable hotkeys for the main window (the global hotkeys)
Diffstat (limited to 'src/hotkeys.h')
-rw-r--r--src/hotkeys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hotkeys.h b/src/hotkeys.h
index d09af5627..b8b1e0984 100644
--- a/src/hotkeys.h
+++ b/src/hotkeys.h
@@ -74,7 +74,7 @@ struct Hotkey {
const uint16 *keycode = default_keycodes;
while (*keycode != 0) {
- this->keycodes.Include(keycode);
+ this->keycodes.Include(*keycode);
keycode++;
}
}