From 1a9510834a33ff6baf422dfd8b9505420bc693e7 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2020 12:10:09 +0900 Subject: [PATCH] Add a missed opcode conversion for %% --- tools/qfcc/source/statements.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/statements.c b/tools/qfcc/source/statements.c index 5dc5d878c..239c11f49 100644 --- a/tools/qfcc/source/statements.c +++ b/tools/qfcc/source/statements.c @@ -439,6 +439,7 @@ convert_op (int op) case '*': return "*"; case '/': return "/"; case '%': return "%"; + case MOD: return "%%"; case '&': return "&"; case '|': return "|"; case '^': return "^";