OSX buildfix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6410 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
j4ck.fr0st 2010-11-14 15:12:07 +00:00
parent c21f804c48
commit b5e4f7f622
1 changed files with 6 additions and 6 deletions

View File

@ -224,23 +224,23 @@ inline u64 CreateMapId(u32 address, u32 size)
inline u64 CreateVMapId(u8 VATUSED) inline u64 CreateVMapId(u8 VATUSED)
{ {
u64 id = 0; u64 vmat_id = 0;
for(int i = 0; i < 8 ; i++) for(int i = 0; i < 8 ; i++)
{ {
if(VATUSED & (1 << i)) if(VATUSED & (1 << i))
{ {
//id ^= GetHash64((u8*)(&g_VtxAttr[i].g0.),sizeof(VAT),0); //vmat_id ^= GetHash64((u8*)(&g_VtxAttr[i].g0.),sizeof(VAT),0);
if(id != 0) if(vmat_id != 0)
{ {
id ^= (g_VtxAttr[i].g0.Hex | (g_VtxAttr[i].g1.Hex << 32)) ^ (g_VtxAttr[i].g2.Hex << 16); vmat_id ^= (g_VtxAttr[i].g0.Hex | (g_VtxAttr[i].g1.Hex << 32)) ^ (g_VtxAttr[i].g2.Hex << 16);
} }
else else
{ {
id = (g_VtxAttr[i].g0.Hex | (g_VtxAttr[i].g1.Hex << 32)) ^ (g_VtxAttr[i].g2.Hex << 16); vmat_id = (g_VtxAttr[i].g0.Hex | (g_VtxAttr[i].g1.Hex << 32)) ^ (g_VtxAttr[i].g2.Hex << 16);
} }
} }
} }
return id; return vmat_id;
} }
typedef std::map<u64, CachedDisplayList> DLMap; typedef std::map<u64, CachedDisplayList> DLMap;