mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
clean up math varsize complaints
This commit is contained in:
parent
1230d0d280
commit
0ce2da3a23
30 changed files with 61 additions and 56 deletions
|
|
@ -115,7 +115,7 @@ void TerrainFile::_buildGridMap()
|
|||
for ( S32 i = mGridLevels; i >= 0; i-- )
|
||||
{
|
||||
mGridMap[i] = grid;
|
||||
grid += 1 << ( 2 * ( mGridLevels - i ) );
|
||||
grid += (U64)1 << (U64)( 2 * ( mGridLevels - i ) );
|
||||
}
|
||||
|
||||
for( S32 i = mGridLevels; i >= 0; i-- )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue