This commit is contained in:
Stephen Miller 2025-03-30 15:49:19 -05:00
parent dd1004916e
commit a0eeee7755

View File

@ -109,7 +109,7 @@ void Linker::Execute(const std::vector<std::string> args) {
void* addr_out{reinterpret_cast<void*>(KernelAllocBase)};
const s32 ret = Libraries::Kernel::sceKernelMapNamedFlexibleMemory(
&addr_out, InternalMemorySize, 3, 0, "SceKernelPrimaryTcbTls");
&addr_out, InternalMemorySize, 3, 0, "SceKernelInternalMemory");
ASSERT_MSG(ret == 0, "Unable to perform sceKernelInternalMemory mapping");
main_thread.Run([this, module, args](std::stop_token) {