Merge pull request #18550 from GermanAizek/fix-memsize-type

[Common Data Net/Core Debugger HLE/GPU Debugger] Fixed reduction data type size to strict 32-bit integer
This commit is contained in:
Henrik Rydgård
2023-12-14 17:51:08 +01:00
committed by GitHub
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1912,7 +1912,7 @@ bool __KernelLoadGEDump(const std::string &base_filename, std::string *error_str
};
for (size_t i = 0; i < ARRAY_SIZE(runDumpCode); ++i) {
Memory::WriteUnchecked_U32(runDumpCode[i], mipsr4k.pc + (int)i * sizeof(u32_le));
Memory::WriteUnchecked_U32(runDumpCode[i], mipsr4k.pc + (u32)i * sizeof(u32_le));
}
PSPModule *module = new PSPModule();