mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[gamecode] Correct return's opname
Not meant to have the size in it.
This commit is contained in:
parent
8559a4fe2d
commit
e186d5064d
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ rcall_formats = {
|
||||||
return_formats = {
|
return_formats = {
|
||||||
"opcode": "OP_RETURN_{ss+1}",
|
"opcode": "OP_RETURN_{ss+1}",
|
||||||
"mnemonic": "return{ss+1}",
|
"mnemonic": "return{ss+1}",
|
||||||
"opname": "return{ss+1}",
|
"opname": "return",
|
||||||
"widths": "0, 0, 0",
|
"widths": "0, 0, 0",
|
||||||
"format": "%Ra",
|
"format": "%Ra",
|
||||||
"types": "ev_void, ev_invalid, ev_invalid",
|
"types": "ev_void, ev_invalid, ev_invalid",
|
||||||
|
|
Loading…
Reference in a new issue