summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorj4ck.fr0st <j4ck.fr0st@gmail.com>2010-02-11 17:54:16 +0000
committerj4ck.fr0st <j4ck.fr0st@gmail.com>2010-02-11 17:54:16 +0000
commite4dcdf796f7f89589c7656aa9dab1d2ce7799b37 (patch)
tree671b1e78eac767dd28c0c31f702b99edf3e9023b /Source/Core/VideoCommon
parent6200c99dd43dd75178394b7fad0d6913bf13099e (diff)
OSX build fix.
Fixes Issue 2260 git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5039 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/Src/TextureDecoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.cpp b/Source/Core/VideoCommon/Src/TextureDecoder.cpp
index 606c1223d3..e39050bd64 100644
--- a/Source/Core/VideoCommon/Src/TextureDecoder.cpp
+++ b/Source/Core/VideoCommon/Src/TextureDecoder.cpp
@@ -234,7 +234,7 @@ u64 TexDecoder_GetFullHash(const u8 *src, int len, u64 seed)
u64 TexDecoder_GetFastHash(const u8 *src, int len, u64 seed)
{
- u64 hash = seed ? seed : 0x1337c0debeefbabe;
+ u64 hash = seed ? seed : 0x1337c0debeefbabeULL;
int step = (len / 8) / 37;
if (!step) step = 1;
for (int i = 0; i < len / 8; i += step) {