mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +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')
|
||||
{
|
||||
TokenType = TK_UIntConst;
|
||||
Number = strtoull(String, &stopper, 0);
|
||||
Number = (int)strtoull(String, &stopper, 0);
|
||||
Float = (unsigned)Number;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue