mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 09:56:30 +00:00
DIG: added hack to allow turn on light bridge
svn-id: r4989
This commit is contained in:
parent
6cfcd04682
commit
bb8401ab24
@ -2962,7 +2962,6 @@ void Scumm::o6_kernelFunction()
|
||||
push(_objs[i].height);
|
||||
break;
|
||||
case 211:
|
||||
warning("o6_kernelFunction: getInput(%d)", args[1]);
|
||||
/*
|
||||
13 = thrust
|
||||
336 = thrust
|
||||
@ -2973,6 +2972,15 @@ void Scumm::o6_kernelFunction()
|
||||
115 = right
|
||||
333 = tight
|
||||
*/
|
||||
|
||||
//FIXME: this is hack to allow turn on light bridge,
|
||||
//How to check is left button pressed ?
|
||||
if ((_gameId == GID_DIG) && (args[1] == 13)) {
|
||||
push(1);
|
||||
break;
|
||||
}
|
||||
|
||||
warning("o6_kernelFunction: getInput(%d)", args[1]);
|
||||
push(0);
|
||||
break;
|
||||
case 212:
|
||||
|
Loading…
x
Reference in New Issue
Block a user