fix endian in image

This commit is contained in:
Ced2911 2013-07-31 17:41:14 +02:00
parent e5166a5970
commit 0bae3f8bf9

View File

@ -166,7 +166,7 @@ void __PPGeInit()
palette[i] = (val << 12) | 0xFFF;
}
u16 *imagePtr = (u16 *)imageData;
u16_le *imagePtr = (u16_le *)imageData;
u8 *ramPtr = (u8 *)Memory::GetPointer(atlasPtr);
// Palettize to 4-bit, the easy way.