diff options
author | Eugene Sandulenko | 2016-10-02 13:23:04 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-10-02 13:23:04 +0200 |
commit | 4acb6c886cacf5aa08d828508472c8ff7aa8947a (patch) | |
tree | c57f841e89b7643094c17c10ac1786054fbf8107 /engines | |
parent | 90ec4f6ac52fc104f08e796f907f44f6fdde2122 (diff) | |
download | scummvm-rg350-4acb6c886cacf5aa08d828508472c8ff7aa8947a.tar.gz scummvm-rg350-4acb6c886cacf5aa08d828508472c8ff7aa8947a.tar.bz2 scummvm-rg350-4acb6c886cacf5aa08d828508472c8ff7aa8947a.zip |
FULLPIPE: Center mouse cursor on startup
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/fullpipe.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/fullpipe.cpp b/engines/fullpipe/fullpipe.cpp index e9694a0d06..39b4243119 100644 --- a/engines/fullpipe/fullpipe.cpp +++ b/engines/fullpipe/fullpipe.cpp @@ -307,6 +307,9 @@ Common::Error FullpipeEngine::run() { int time1 = g_fp->_system->getMillis(); + // Center mouse + _system->warpMouse(400, 300); + while (_gameContinue) { updateEvents(); |