mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-25 03:40:26 +01:00
Fix 64-bit build of Entities/Player.es (of First Encounter)
This commit is contained in:
parent
430e0c8a95
commit
72bd84edb8
|
@ -2238,7 +2238,7 @@ functions:
|
|||
|
||||
void RenderGameView(CDrawPort *pdp, void *pvUserData)
|
||||
{
|
||||
BOOL bShowExtras = (ULONG(pvUserData)&GRV_SHOWEXTRAS);
|
||||
BOOL bShowExtras = (size_t(pvUserData)&GRV_SHOWEXTRAS);
|
||||
|
||||
// if not yet initialized
|
||||
if(!(m_ulFlags&PLF_INITIALIZED) || (m_ulFlags&PLF_DONTRENDER)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user