From 1b8f4760247934e3bac649d45a887d304b5eb724 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Sun, 27 Feb 2011 23:13:28 +0000 Subject: [PATCH] Integer constants larger than int need a type suffix. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7264 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/DLCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/DLCache.cpp b/Source/Core/VideoCommon/Src/DLCache.cpp index 2a49d37458..5279dbd39e 100644 --- a/Source/Core/VideoCommon/Src/DLCache.cpp +++ b/Source/Core/VideoCommon/Src/DLCache.cpp @@ -213,7 +213,7 @@ inline u64 CreateMapId(u32 address, u32 size) inline u64 CreateVMapId(u32 VATUSED) { - u64 vmap_id = 0x9368e53c2f6af274 ^ g_VtxDesc.Hex; + u64 vmap_id = 0x9368e53c2f6af274ULL ^ g_VtxDesc.Hex; for(int i = 0; i < 8 ; i++) { if(VATUSED & (1 << i))