mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
[gamecode] Remove the wart from def and function names
I never liked the leading s_ (though I guess it means one is supposed to interpret the int as a string pointer, but meh).
This commit is contained in:
parent
6990bd5752
commit
be474d9937
16 changed files with 57 additions and 57 deletions
|
@ -76,7 +76,7 @@ PR_UglyValueString (progs_t *pr, etype_t type, pr_type_t *val, dstring_t *line)
|
|||
break;
|
||||
case ev_func:
|
||||
f = pr->pr_functions + val->func_var;
|
||||
dsprintf (line, "%s", PR_GetString (pr, f->s_name));
|
||||
dsprintf (line, "%s", PR_GetString (pr, f->name));
|
||||
break;
|
||||
case ev_field:
|
||||
def = PR_FieldAtOfs (pr, val->integer_var);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue