aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authoruruk2013-07-18 12:04:04 +0200
committeruruk2013-07-18 12:04:04 +0200
commit42928502977918deafb68987d7c1e54a3bc65490 (patch)
tree034504c152bcad8e47acc13306447a49ba400631 /engines
parentd3ec729c8f7dff3689775ad32a42399e4f1ae015 (diff)
downloadscummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.tar.gz
scummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.tar.bz2
scummvm-rg350-42928502977918deafb68987d7c1e54a3bc65490.zip
AVALANCHE: Stub Dropdown::lightup().
Diffstat (limited to 'engines')
-rw-r--r--engines/avalanche/dropdown2.cpp5
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);*/
}