mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 10:11:04 +00:00
- got rid of print.h (a.k.a. 'how not do design a text formatting library'.)
This commit is contained in:
parent
117e78cb3b
commit
1d9d1396ac
3 changed files with 1 additions and 196 deletions
|
@ -381,7 +381,7 @@ int32_t scriptfile_getsymbolvalue(char const *name, int32_t *val)
|
|||
sscanf(name + 2, "%" PRIx64 "", &x);
|
||||
|
||||
if (EDUKE32_PREDICT_FALSE(x > UINT32_MAX))
|
||||
buildprint("warning: number 0x", hex(x), " truncated to 32 bits.\n");
|
||||
Printf("warning: number 0x%x" PRIx64 " truncated to 32 bits.\n", x);
|
||||
|
||||
*val = x;
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue