0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-24 02:22:47 +00:00

Add a missed opcode conversion for %%

This commit is contained in:
Bill Currie 2020-02-16 12:10:09 +09:00
parent 32c21ec559
commit 1a9510834a

View file

@ -439,6 +439,7 @@ convert_op (int op)
case '*': return "*";
case '/': return "/";
case '%': return "%";
case MOD: return "%%";
case '&': return "&";
case '|': return "|";
case '^': return "^";