Add hyperlink on/off functions of oracle in Feeble Files

svn-id: r20665
This commit is contained in:
Travis Howell 2006-02-13 10:29:25 +00:00
parent aaa11f6efb
commit 81b820f7c9
6 changed files with 87 additions and 0 deletions

View file

@ -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();
}