summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/kernel_executable.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-11-12 11:20:26 +0100
committerLioncash <mathew1800@gmail.com>2019-11-12 13:55:39 +0100
commit23878bf360b95561729ee1208118cb8e13b6aeca (patch)
treef82392a84fbb6fab0db80956d44ec763cfe7cd50 /src/core/file_sys/kernel_executable.cpp
parentgdbstub: Resolve sign conversion errors (diff)
downloadyuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar.gz
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar.bz2
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar.lz
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar.xz
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.tar.zst
yuzu-23878bf360b95561729ee1208118cb8e13b6aeca.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/kernel_executable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/kernel_executable.cpp b/src/core/file_sys/kernel_executable.cpp
index 371300684..76313679d 100644
--- a/src/core/file_sys/kernel_executable.cpp
+++ b/src/core/file_sys/kernel_executable.cpp
@@ -147,7 +147,7 @@ std::vector<u32> KIP::GetKernelCapabilities() const {
}
s32 KIP::GetMainThreadPriority() const {
- return header.main_thread_priority;
+ return static_cast<s32>(header.main_thread_priority);
}
u32 KIP::GetMainThreadStackSize() const {