Fix Linux build.

Turns out Hash.h needs Common.h
This commit is contained in:
Lioncash 2013-10-19 19:36:21 -04:00
parent 8b10d5b481
commit a5a21e7f44

View File

@ -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