diff options
author | Travis Howell | 2005-05-07 01:52:17 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-07 01:52:17 +0000 |
commit | 8ce20af13714644cb2f15de481bb8ac0df870868 (patch) | |
tree | 0d3cd841e0162910f1ae70fd7aa925a89157ffc1 /scumm/insane | |
parent | d08c307870a18d8f422f4321c54a0ac0e8721736 (diff) | |
download | scummvm-rg350-8ce20af13714644cb2f15de481bb8ac0df870868.tar.gz scummvm-rg350-8ce20af13714644cb2f15de481bb8ac0df870868.tar.bz2 scummvm-rg350-8ce20af13714644cb2f15de481bb8ac0df870868.zip |
Add eriktorbjorn's patch for:
#1018588 - FT: Xlib async errors in INSANE sequences
svn-id: r17937
Diffstat (limited to 'scumm/insane')
-rw-r--r-- | scumm/insane/insane.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/insane/insane.cpp b/scumm/insane/insane.cpp index 041cfd0181..6daff38fda 100644 --- a/scumm/insane/insane.cpp +++ b/scumm/insane/insane.cpp @@ -619,7 +619,7 @@ void Insane::startVideo(const char *filename, int num, int argC, int frameRate, } void Insane::smush_warpMouse(int x, int y, int buttons) { - _vm->_system->warpMouse(x, y); + _player->warpMouse(x, y, buttons); } void Insane::putActors(void) { |