diff options
author | Eugene Sandulenko | 2013-09-04 22:03:16 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-06 14:51:25 +0300 |
commit | ff9cd54fd15c07db4c31f81bff318db26a47297f (patch) | |
tree | f883cb39f9acb136c6e9b6a305770d88a6c093d3 /engines | |
parent | 0814826f12960a03f0c9a32316c9449982bd14cb (diff) | |
download | scummvm-rg350-ff9cd54fd15c07db4c31f81bff318db26a47297f.tar.gz scummvm-rg350-ff9cd54fd15c07db4c31f81bff318db26a47297f.tar.bz2 scummvm-rg350-ff9cd54fd15c07db4c31f81bff318db26a47297f.zip |
FULLPIPE: Fix default cursor
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/input.cpp b/engines/fullpipe/input.cpp index 9a25dc669c..eb528f0ac1 100644 --- a/engines/fullpipe/input.cpp +++ b/engines/fullpipe/input.cpp @@ -208,7 +208,7 @@ void FullpipeEngine::updateCursorsCommon() { } } - _cursorId = PIC_CSR_DEFAULT_INV; + _cursorId = PIC_CSR_DEFAULT; } } // End of namespace Fullpipe |