diff options
author | Filippos Karapetis | 2007-09-09 15:33:00 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-09-09 15:33:00 +0000 |
commit | c5989f098dc1717b30c02db097cc584fe882eb87 (patch) | |
tree | 331ad55a89eff1aa0f377f389ba676a3d535375f /engines/agi | |
parent | 25cea17c0b39ae6ce76205ebace6a55c8faae3fe (diff) | |
download | scummvm-rg350-c5989f098dc1717b30c02db097cc584fe882eb87.tar.gz scummvm-rg350-c5989f098dc1717b30c02db097cc584fe882eb87.tar.bz2 scummvm-rg350-c5989f098dc1717b30c02db097cc584fe882eb87.zip |
Mouse is working now in Winnie. Click to move functionality still not completed, though
svn-id: r28882
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/preagi_winnie.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/preagi_winnie.cpp b/engines/agi/preagi_winnie.cpp index 0ab678ddd4..df20627ab2 100644 --- a/engines/agi/preagi_winnie.cpp +++ b/engines/agi/preagi_winnie.cpp @@ -737,8 +737,8 @@ void Winnie::getMenuSel(char *szMenu, int *iSel, int fCanSel[]) { _vm->_system->quit(); break; case Common::EVENT_MOUSEMOVE: - x = event.mouse.x; - y = event.mouse.y; + x = event.mouse.x / 8; + y = event.mouse.y / 8; getMenuMouseSel(iSel, fCanSel, x, y); // Change cursor |