mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
Make float values obvious in expression dot dumps.
This commit is contained in:
parent
f65ce22ddc
commit
a881fb5f5b
1 changed files with 1 additions and 1 deletions
|
@ -380,7 +380,7 @@ print_value (dstring_t *dstr, expr_t *e, int level, int id, expr_t *next)
|
|||
label = va ("\\\"%s\\\"", quote_string (e->e.value->v.string_val));
|
||||
break;
|
||||
case ev_float:
|
||||
label = va ("%g", e->e.value->v.float_val);
|
||||
label = va ("f %g", e->e.value->v.float_val);
|
||||
break;
|
||||
case ev_vector:
|
||||
label = va ("'%g %g %g'",
|
||||
|
|
Loading…
Reference in a new issue