mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-12 23:54:17 +00:00
- fixed warning.
This commit is contained in:
parent
b77a0eb7cf
commit
04988a331b
1 changed files with 1 additions and 1 deletions
|
@ -554,7 +554,7 @@ bool FScanner::GetToken ()
|
||||||
String[StringLen - 2] == 'u' || String[StringLen - 2] == 'U')
|
String[StringLen - 2] == 'u' || String[StringLen - 2] == 'U')
|
||||||
{
|
{
|
||||||
TokenType = TK_UIntConst;
|
TokenType = TK_UIntConst;
|
||||||
Number = strtoull(String, &stopper, 0);
|
Number = (int)strtoull(String, &stopper, 0);
|
||||||
Float = (unsigned)Number;
|
Float = (unsigned)Number;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue