JKRDvdAramRipper match

This commit is contained in:
Jasper St. Pierre
2023-10-29 12:13:52 -07:00
parent a3895538dd
commit 5ecfe0da71
3 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ inline JKRCompression JKRCheckCompressed(u8 *pBuf) {
}
inline u32 JKRDecompExpandSize(u8* pBuf) {
return (pBuf[4] << 0x18) | (pBuf[5] << 0x10) | (pBuf[6] << 8) | pBuf[7];
return (pBuf[4] << 24) | (pBuf[5] << 16) | (pBuf[6] << 8) | pBuf[7];
}
#endif /* JKRDECOMP_H */