diff options
author | Eugene Sandulenko | 2014-01-23 11:32:17 -0800 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-23 12:01:25 -0800 |
commit | 34c2ba5ff3b7ede24b847b853c30aaef846c2322 (patch) | |
tree | b7e2ea626d48082ac1b5fc460b5f4458c8fbe31f /engines/fullpipe | |
parent | 7277ad7aa17613e91e451a572f091f4345990a32 (diff) | |
download | scummvm-rg350-34c2ba5ff3b7ede24b847b853c30aaef846c2322.tar.gz scummvm-rg350-34c2ba5ff3b7ede24b847b853c30aaef846c2322.tar.bz2 scummvm-rg350-34c2ba5ff3b7ede24b847b853c30aaef846c2322.zip |
FULLPIPE: Implement sceneFinal_updateCursor()
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/scenes/sceneFinal.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/sceneFinal.cpp b/engines/fullpipe/scenes/sceneFinal.cpp index cbb250c633..56dc9bfd65 100644 --- a/engines/fullpipe/scenes/sceneFinal.cpp +++ b/engines/fullpipe/scenes/sceneFinal.cpp @@ -55,4 +55,13 @@ void sceneFinal_initScene() { g_vars->sceneFinal_var03 = 0; } +int sceneFinal_updateCursor() { + if (g_vars->sceneFinal_var01) + g_fp->_cursorId = 0; + else + g_fp->updateCursorCommon(); + + return g_fp->_cursorId; +} + } // End of namespace Fullpipe |