Add hyperlink on/off functions of oracle in Feeble Files
svn-id: r20665
This commit is contained in:
parent
aaa11f6efb
commit
81b820f7c9
6 changed files with 87 additions and 0 deletions
|
@ -990,6 +990,22 @@ int SimonEngine::runScript() {
|
|||
}
|
||||
break;
|
||||
|
||||
case 171:{ /* oracle hyperlink on */
|
||||
if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2)
|
||||
goto invalid_opcode;
|
||||
|
||||
hyperLinkOn(getVarOrWord());
|
||||
}
|
||||
break;
|
||||
|
||||
case 172:{ /* oracle hyperlink off */
|
||||
if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2)
|
||||
goto invalid_opcode;
|
||||
|
||||
hyperLinkOff();
|
||||
}
|
||||
break;
|
||||
|
||||
case 175:{ /* vga pointer op 1 */
|
||||
o_lockZone();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue