mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 20:34:12 +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);
|
push(_objs[i].height);
|
||||||
break;
|
break;
|
||||||
case 211:
|
case 211:
|
||||||
warning("o6_kernelFunction: getInput(%d)", args[1]);
|
|
||||||
/*
|
/*
|
||||||
13 = thrust
|
13 = thrust
|
||||||
336 = thrust
|
336 = thrust
|
||||||
@ -2973,6 +2972,15 @@ void Scumm::o6_kernelFunction()
|
|||||||
115 = right
|
115 = right
|
||||||
333 = tight
|
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);
|
push(0);
|
||||||
break;
|
break;
|
||||||
case 212:
|
case 212:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user