mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-20 15:13:45 +00:00
Fix: Bit shifting of the 32-bit value with a subsequent expansion to the 64-bit type.
We now shift the 64-bit value, which is now treated correctly.
This commit is contained in:
parent
6275942acb
commit
5c986f755a
2 changed files with 3 additions and 3 deletions
|
|
@ -849,7 +849,7 @@ void TerrCell::_updateMaterials()
|
|||
if ( index == U8_MAX || index > 63 )
|
||||
continue;
|
||||
|
||||
mMaterials |= (U64)(1<<index);
|
||||
mMaterials |= (U64)((U64)1<<index);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue