mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Get the return param right for messages to nil.
R_INT(pr) = R_(INT)(pr); is not exactly what I had intended :P
This commit is contained in:
parent
7ed490c434
commit
3a9fe196b6
1 changed files with 1 additions and 1 deletions
|
@ -1105,7 +1105,7 @@ rua_obj_msgSend (progs_t *pr)
|
|||
func_t imp;
|
||||
|
||||
if (!self) {
|
||||
R_INT (pr) = R_INT (pr);
|
||||
R_INT (pr) = P_INT (pr, 0);
|
||||
return;
|
||||
}
|
||||
if (!_cmd)
|
||||
|
|
Loading…
Reference in a new issue