diff options
author | Filippos Karapetis | 2009-04-23 20:37:41 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-04-23 20:37:41 +0000 |
commit | 78f892f87c03603d635d1ccef9c0febc214be5d9 (patch) | |
tree | 65f52e64b6688f1894eba0fb39ed8f9053bad25a /engines/sci/engine | |
parent | 001699becbe2d8e6124051ac588095acca385d01 (diff) | |
download | scummvm-rg350-78f892f87c03603d635d1ccef9c0febc214be5d9.tar.gz scummvm-rg350-78f892f87c03603d635d1ccef9c0febc214be5d9.tar.bz2 scummvm-rg350-78f892f87c03603d635d1ccef9c0febc214be5d9.zip |
The mouse cursor is now working in Eco Quest 1, though the hotspot is still wrong. Many thanks to waltervn for his findings on this.
svn-id: r40095
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index d67dbd9434..486e53a79f 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -289,7 +289,7 @@ static gfx_color_t graph_map_color(EngineState *s, int color, int priority, int return retval; } -reg_t kSetCursor_SCI11(EngineState *s, int funct_nr, int argc, reg_t *argv) { +reg_t kSetCursorNew(EngineState *s, int funct_nr, int argc, reg_t *argv) { switch (argc) { case 1 : if (UKPV(0) == 0) { @@ -334,8 +334,9 @@ reg_t kSetCursor_SCI11(EngineState *s, int funct_nr, int argc, reg_t *argv) { reg_t kSetCursor(EngineState *s, int funct_nr, int argc, reg_t *argv) { if (s->version >= SCI_VERSION(1, 001, 000) || + s->_gameName.equalsIgnoreCase("eco") || // Eco Quest 1 needs kSetCursorNew has_kernel_function(s, "MoveCursor")) { - return kSetCursor_SCI11(s, funct_nr, argc, argv); + return kSetCursorNew(s, funct_nr, argc, argv); } if (SKPV_OR_ALT(1, 1)) { |