diff options
author | Liam <byteslice@airmail.cc> | 2023-11-26 19:34:00 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-11-26 19:34:07 -0500 |
commit | 7482e03c770332dca12a08467a64192c8179a613 (patch) | |
tree | 3103449498d3912ab30b9f1ca680c9e794b22462 /src/core/loader | |
parent | 6432508740383b9894af03086bda4d1b0e254e3e (diff) |
loader: fix gcc compile
Diffstat (limited to 'src/core/loader')
-rw-r--r-- | src/core/loader/nso.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index e310c8f0f..ade8f85f8 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp @@ -165,7 +165,7 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::KProcess& process, Core:: patch->PatchText(program_image, code); // Add patch section size to the module size. - image_size += patch->GetSectionSize(); + image_size += static_cast<u32>(patch->GetSectionSize()); } else if (patch) { // Relocate code patch and copy to the program_image. patch->RelocateAndCopy(load_base, code, program_image, &process.GetPostHandlers()); |