From 72bd84edb8ac481e61b112fec8966cf5e9af6d2c Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Wed, 20 Apr 2016 18:04:56 +0200 Subject: [PATCH] Fix 64-bit build of Entities/Player.es (of First Encounter) --- Sources/Entities/Player.es | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Entities/Player.es b/Sources/Entities/Player.es index 4f55061..d02be99 100644 --- a/Sources/Entities/Player.es +++ b/Sources/Entities/Player.es @@ -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)) {