mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-29 16:31:43 +00:00
- backend update from GZDoom.
This commit is contained in:
parent
7b72fccfa2
commit
e7ab4cd176
16 changed files with 333 additions and 188 deletions
|
@ -451,7 +451,7 @@ PInt::PInt(unsigned int size, bool unsign, bool compatible)
|
|||
else
|
||||
{
|
||||
Symbols.AddSymbol(Create<PSymbolConstNumeric>(NAME_Min, this, 0u));
|
||||
Symbols.AddSymbol(Create<PSymbolConstNumeric>(NAME_Max, this, (1u << ((8 * size) - 1))));
|
||||
Symbols.AddSymbol(Create<PSymbolConstNumeric>(NAME_Max, this, (uint32_t) (((uint64_t) 1u << (size * 8)) - 1uL)));
|
||||
}
|
||||
SetOps();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue