From 0c6586c753529af64d055f8de67134098432bf8c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 1 Sep 2023 14:40:05 +0900 Subject: [PATCH] [qfcc] Always initialize Ruamoko opcodes They're used for compile-time evaluations regardless of the target. --- tools/qfcc/source/opcodes.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/qfcc/source/opcodes.c b/tools/qfcc/source/opcodes.c index fc3bc7e6b..451bd41b9 100644 --- a/tools/qfcc/source/opcodes.c +++ b/tools/qfcc/source/opcodes.c @@ -510,9 +510,8 @@ opcode_init (void) { if (options.code.progsversion < PROG_VERSION) { v6p_opcode_init (); - } else { - rua_opcode_init (); } + rua_opcode_init (); } void