From 0b5c2b4609385e1ec16746e20a5c103ce2b02fbc Mon Sep 17 00:00:00 2001 From: Evil Eye Date: Mon, 5 Sep 2022 17:27:01 +0200 Subject: [PATCH] Implement the full version of the ori command --- components/compiler/extensions0.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/compiler/extensions0.cpp b/components/compiler/extensions0.cpp index 64133bee84..358683a397 100644 --- a/components/compiler/extensions0.cpp +++ b/components/compiler/extensions0.cpp @@ -322,7 +322,8 @@ namespace Compiler extensions.registerFunction ("getpctraveling", 'l', "", opcodeGetPcTraveling); extensions.registerInstruction ("betacomment", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); extensions.registerInstruction ("bc", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); - extensions.registerInstruction ("ori", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); // 'ori' stands for 'ObjectReferenceInfo' + extensions.registerInstruction ("ori", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); // 'ori' stands for 'OutputRefInfo' + extensions.registerInstruction ("outputrefinfo", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); extensions.registerInstruction ("showscenegraph", "/l", opcodeShowSceneGraph, opcodeShowSceneGraphExplicit); extensions.registerInstruction ("ssg", "/l", opcodeShowSceneGraph, opcodeShowSceneGraphExplicit); extensions.registerInstruction ("addtolevcreature", "ccl", opcodeAddToLevCreature);