summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-11-26 19:34:00 -0500
committerLiam <byteslice@airmail.cc>2023-11-26 19:34:07 -0500
commit7482e03c770332dca12a08467a64192c8179a613 (patch)
tree3103449498d3912ab30b9f1ca680c9e794b22462 /src/core
parent6432508740383b9894af03086bda4d1b0e254e3e (diff)
loader: fix gcc compile
Diffstat (limited to 'src/core')
-rw-r--r--src/core/loader/nso.cpp2
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());