mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
remove '(' (never used, don't remember what it was intended for) and add
'b' (bind), 's' (state) and 'c' (call) to get_op_string.
This commit is contained in:
parent
54ddb94132
commit
9b784e331b
1 changed files with 3 additions and 1 deletions
|
@ -210,12 +210,14 @@ get_op_string (int op)
|
|||
case '!': return "!";
|
||||
case SHL: return "<<";
|
||||
case SHR: return ">>";
|
||||
case '(': return "(";
|
||||
case '.': return ".";
|
||||
case 'i': return "<if>";
|
||||
case 'n': return "<ifnot>";
|
||||
case 'g': return "<goto>";
|
||||
case 'r': return "<return>";
|
||||
case 'b': return "<bind>";
|
||||
case 's': return "<state>";
|
||||
case 'c': return "<call>";
|
||||
default: return "unknown";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue