summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/resource_limit.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2017-09-30 15:22:14 +0200
committerGitHub <noreply@github.com>2017-09-30 15:22:14 +0200
commita3de996ae7c41bb8d475b47dcd08abdd571cfc73 (patch)
tree016f6866d15fb9a41a15666f492bed352d95b523 /src/core/hle/kernel/resource_limit.cpp
parentMerge pull request #2961 from Subv/load_titles (diff)
parentFixed type conversion ambiguity (diff)
downloadyuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar.gz
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar.bz2
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar.lz
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar.xz
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.tar.zst
yuzu-a3de996ae7c41bb8d475b47dcd08abdd571cfc73.zip
Diffstat (limited to 'src/core/hle/kernel/resource_limit.cpp')
-rw-r--r--src/core/hle/kernel/resource_limit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/resource_limit.cpp b/src/core/hle/kernel/resource_limit.cpp
index a8f10a3ee..517dc47a8 100644
--- a/src/core/hle/kernel/resource_limit.cpp
+++ b/src/core/hle/kernel/resource_limit.cpp
@@ -61,7 +61,7 @@ s32 ResourceLimit::GetCurrentResourceValue(u32 resource) const {
}
}
-s32 ResourceLimit::GetMaxResourceValue(u32 resource) const {
+u32 ResourceLimit::GetMaxResourceValue(u32 resource) const {
switch (resource) {
case PRIORITY:
return max_priority;