diff options
author | uruk | 2013-07-18 12:04:04 +0200 |
---|---|---|
committer | uruk | 2013-07-18 12:04:04 +0200 |
commit | 42928502977918deafb68987d7c1e54a3bc65490 (patch) | |
tree | 034504c152bcad8e47acc13306447a49ba400631 | |
parent | d3ec729c8f7dff3689775ad32a42399e4f1ae015 (diff) | |
download | scummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.tar.gz scummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.tar.bz2 scummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.zip |
AVALANCHE: Stub Dropdown::lightup().
-rw-r--r-- | engines/avalanche/dropdown2.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/avalanche/dropdown2.cpp b/engines/avalanche/dropdown2.cpp index d0d90056d0..bdb81484f4 100644 --- a/engines/avalanche/dropdown2.cpp +++ b/engines/avalanche/dropdown2.cpp @@ -139,12 +139,13 @@ void onemenu::movehighlight(int8 add) { } void onemenu::lightup() { /* This makes the menu highlight follow the mouse.*/ - if ((_dr->_vm->_gyro.mx < flx1 * 8) || (_dr->_vm->_gyro.mx > flx2 * 8) || + warning("STUB: Dropdown::onemenu::lightup()"); + /*if ((_dr->_vm->_gyro.mx < flx1 * 8) || (_dr->_vm->_gyro.mx > flx2 * 8) || (_dr->_vm->_gyro.my <= 12) || (_dr->_vm->_gyro.my > fly - 3)) return; highlightnum = (_dr->_vm->_gyro.my - 13) / 10; if (highlightnum == oldy) return; - movehighlight(0); + movehighlight(0);*/ } |