summaryrefslogtreecommitdiff
path: root/src/bytecode
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode')
-rw-r--r--src/bytecode/opcodes.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h
index 790b93b..1bdd823 100644
--- a/src/bytecode/opcodes.h
+++ b/src/bytecode/opcodes.h
@@ -155,15 +155,13 @@ enum op_content {
};
enum op_counter_increment {
- COUNTER_INCREMENT_STRING = 0x0080,
- COUNTER_INCREMENT_INTEGER = 0x0081,
+ COUNTER_INCREMENT_NAMED = 0x0080,
COUNTER_INCREMENT_NONE = 0x0000,
};
enum op_counter_reset {
- COUNTER_RESET_STRING = 0x0080,
- COUNTER_RESET_INTEGER = 0x0081,
+ COUNTER_RESET_NAMED = 0x0080,
COUNTER_RESET_NONE = 0x0000,
};