From a5a21e7f441cb403c6037daf0d8c38e418ab477b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 19 Oct 2013 19:36:21 -0400 Subject: [PATCH] Fix Linux build. Turns out Hash.h needs Common.h --- Source/Core/Common/Src/Hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/Hash.h b/Source/Core/Common/Src/Hash.h index e79af99296..7bc37a5632 100644 --- a/Source/Core/Common/Src/Hash.h +++ b/Source/Core/Common/Src/Hash.h @@ -6,7 +6,7 @@ #ifndef _HASH_H_ #define _HASH_H_ -#include "CommonTypes.h" +#include "Common.h" u32 HashFletcher(const u8* data_u8, size_t length); // FAST. Length & 1 == 0. u32 HashAdler32(const u8* data, size_t len); // Fairly accurate, slightly slower