Renumber format flags for sanity
This commit is contained in:
parent
76f33d2742
commit
886c358e91
@ -36,9 +36,9 @@
|
||||
|
||||
using namespace SourceMod;
|
||||
|
||||
#define LADJUST 0x00000004 /* left adjustment */
|
||||
#define ZEROPAD 0x00000080 /* zero (as opposed to blank) pad */
|
||||
#define UPPERDIGITS 0x00000200 /* make alpha digits uppercase */
|
||||
#define LADJUST 0x00000001 /* left adjustment */
|
||||
#define ZEROPAD 0x00000002 /* zero (as opposed to blank) pad */
|
||||
#define UPPERDIGITS 0x00000004 /* make alpha digits uppercase */
|
||||
#define to_digit(c) ((c) - '0')
|
||||
#define is_digit(c) ((unsigned)to_digit(c) <= 9)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user