mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Warning fix in Core/HLE/sceKernelModule.cpp resultBufferOffset type missmatch
This commit is contained in:
parent
1a3e7a17fb
commit
d03eed3e48
1 changed files with 1 additions and 1 deletions
|
@ -1807,7 +1807,7 @@ u32 sceKernelGetModuleIdList(u32 resultBuffer, u32 resultBufferSize, u32 idCount
|
|||
ERROR_LOG(SCEMODULE, "UNTESTED sceKernelGetModuleIdList(%08x, %i, %08x)", resultBuffer, resultBufferSize, idCountAddr);
|
||||
|
||||
int idCount = 0;
|
||||
int resultBufferOffset = 0;
|
||||
u32 resultBufferOffset = 0;
|
||||
|
||||
u32 error;
|
||||
for (auto mod = loadedModules.begin(), modend = loadedModules.end(); mod != modend; ++mod) {
|
||||
|
|
Loading…
Add table
Reference in a new issue