Fix movies artifacts

Left rotation in opcode 15 didn't work because value1 and value2 were signed.
This commit is contained in:
Alexander Batalov 2022-07-07 09:44:30 +03:00
parent 1ac3ba964d
commit 5dd52de43a
1 changed files with 2 additions and 2 deletions

View File

@ -1937,8 +1937,8 @@ static void _nfPkDecomp(unsigned char* a1, unsigned char* a2, int a3, int a4, in
int v11; int v11;
int v13; int v13;
int byte; int byte;
int value1; unsigned int value1;
int value2; unsigned int value2;
int var_10; int var_10;
unsigned char map1[512]; unsigned char map1[512];
unsigned int map2[256]; unsigned int map2[256];