mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
forgot 0X0 was just as valid as 0x0
This commit is contained in:
parent
99cdcc9bd7
commit
2679ade8cd
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ m ([\-+]?)
|
||||||
return INT_VAL;
|
return INT_VAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
0x{XDIGIT}+ {
|
0[xX]{XDIGIT}+ {
|
||||||
const char *c = yytext + 2;
|
const char *c = yytext + 2;
|
||||||
yylval.integer_val = 0;
|
yylval.integer_val = 0;
|
||||||
while (*c) {
|
while (*c) {
|
||||||
|
|
Loading…
Reference in a new issue