mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Clean up MSVC warning [C4312] conversion from type to type * of greater size
This commit is contained in:
parent
265e64f6fc
commit
31d0eb16f8
21 changed files with 39 additions and 39 deletions
|
|
@ -608,7 +608,7 @@ void afxEffectWrapperData::unpack_mods(BitStream* stream, afxXM_BaseData* mods[]
|
|||
{
|
||||
S32 n_mods = stream->readInt(6);
|
||||
for (int i = 0; i < n_mods; i++)
|
||||
mods[i] = (afxXM_BaseData*) readDatablockID(stream);
|
||||
mods[i] = (afxXM_BaseData*)(uintptr_t)readDatablockID(stream);
|
||||
}
|
||||
|
||||
bool afxEffectWrapperData::preload(bool server, String &errorStr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue