Fix shift for G_LOADTILE

This commit is contained in:
GaryOderNichts 2022-04-18 21:03:20 +02:00 committed by Nicholas Estelami
parent a01392c40e
commit a36243f95f
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ void OTRExporter_DisplayList::Save(ZResource* res, const fs::path& outPath, Bina
{
int sss = (data & 0x00FFF00000000000) >> 44;
int ttt = (data & 0x00000FFF00000000) >> 32;
int i = (data & 0x000000000F000000) >> 16;
int i = (data & 0x000000000F000000) >> 24;
int uuu = (data & 0x0000000000FFF000) >> 12;
int vvv= (data & 0x0000000000000FFF);