You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/scratchcpp/virtualmachine.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ enum Opcode
76
76
OP_STR_CONTAINS, /*!< Stores true in the last register if the string stored in the second last register contains the substring in the last register. */
77
77
OP_EXEC, /*!< Calls the function with the index in the argument. */
78
78
OP_INIT_PROCEDURE, /*!< Initializes the list of procedure (custom block) arguments. */
79
-
OP_CALL_PROCEDURE, /*! Calls the procedure (custom block) with the index in the argument. */
79
+
OP_CALL_PROCEDURE, /*!< Calls the procedure (custom block) with the index in the argument. */
80
80
OP_ADD_ARG, /*!< Adds a procedure (custom block) argument with the value from the last register. */
81
81
OP_READ_ARG, /*!< Reads the procedure (custom block) argument with the index in the argument and stores the value in the last register. */
82
82
OP_BREAK_FRAME, /*!< Breaks current frame at the end of the loop. */
0 commit comments