From 6a469a0f1bd7f3f382635720f2ed4ab0d336dddf Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 16 Oct 2005 22:12:00 +0000 Subject: Put correct order of MM NES verbs in help. Will try to make them work later. Currently mapping is all wrong. svn-id: r19114 --- scumm/help.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'scumm') diff --git a/scumm/help.cpp b/scumm/help.cpp index d6fc697e9b..fe9790fd4d 100644 --- a/scumm/help.cpp +++ b/scumm/help.cpp @@ -119,6 +119,25 @@ void ScummHelp::updateStrings(byte gameId, byte version, int page, case GID_ZAK: case GID_ZAK256: case GID_MANIAC: + // HACK. I know use of g_scumm here is evil, however, + // introducing new GID and putting it everywhere will + // pollute code much more that this single instance + if (g_scumm->_platform == Common::kPlatformNES) { + ADD_BIND("q", "Push"); + ADD_BIND("a", "Pull"); + ADD_BIND("z", "Give"); + ADD_BIND("w", "Open"); + ADD_BIND("s", "Close"); + ADD_BIND("x", "Go to"); + ADD_BIND("e", "Get"); + ADD_BIND("d", "Use"); + ADD_BIND("c", "Read"); + ADD_BIND("r", "New kid"); + ADD_BIND("f", "Turn on"); + ADD_BIND("v", "Turn off"); + break; + } + ADD_BIND("q", "Push"); ADD_BIND("a", "Pull"); ADD_BIND("z", "Give"); -- cgit v1.2.3