- got rid of print.h (a.k.a. 'how not do design a text formatting library'.)

This commit is contained in:
Christoph Oelckers 2020-07-14 15:41:19 +02:00
parent 117e78cb3b
commit 1d9d1396ac
3 changed files with 1 additions and 196 deletions

View file

@ -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;