mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
fix endian in image
This commit is contained in:
parent
e5166a5970
commit
0bae3f8bf9
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue