mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 09:51:40 +00:00
fix a silly error causing integer constants to not be re-used
This commit is contained in:
parent
a33c834a39
commit
9e46265046
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ int_imm_get_key (void *_def, void *_str)
|
||||||
def_t *def = (def_t*)_def;
|
def_t *def = (def_t*)_def;
|
||||||
static char rep[60];
|
static char rep[60];
|
||||||
char *str = (char*)_str;
|
char *str = (char*)_str;
|
||||||
sprintf (rep, "\001%s:%08X", str, G_INT(def->ofs));
|
sprintf (rep, "\001%s:%08X\001", str, G_INT(def->ofs));
|
||||||
return rep;
|
return rep;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue