summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-28 22:44:46 +0100
committerLioncash <mathew1800@gmail.com>2018-10-28 22:45:29 +0100
commita973a049b7c55751cd70545d9ea0dbe1ff720f7e (patch)
tree8e420102bf7f5963ebf000090ad608b0a5a83499 /src/core/hle/kernel/svc.cpp
parentcore: Add missing const variants of getters for the System class (diff)
downloadyuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar.gz
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar.bz2
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar.lz
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar.xz
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.tar.zst
yuzu-a973a049b7c55751cd70545d9ea0dbe1ff720f7e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4e490e2b5..c7c579aaf 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -572,7 +572,7 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
return ERR_INVALID_HANDLE;
}
- auto& system = Core::System::GetInstance();
+ const auto& system = Core::System::GetInstance();
const auto& scheduler = system.CurrentScheduler();
const auto* const current_thread = scheduler.GetCurrentThread();
const bool same_thread = current_thread == thread;