summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc/svc_resource_limit.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-08-18 15:12:19 +0200
committerGitHub <noreply@github.com>2023-08-18 15:12:19 +0200
commit314d3858a1cb6db72ef66ca41dd2cd9061cdbec4 (patch)
tree0de70ba0585b5e3dc68cff10dfd330ce29bbab8e /src/core/hle/kernel/svc/svc_resource_limit.cpp
parentMerge pull request #11310 from vonchenplus/vulkan_format (diff)
parentkernel: remove relative task registration (diff)
downloadyuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar.gz
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar.bz2
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar.lz
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar.xz
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.tar.zst
yuzu-314d3858a1cb6db72ef66ca41dd2cd9061cdbec4.zip
Diffstat (limited to 'src/core/hle/kernel/svc/svc_resource_limit.cpp')
-rw-r--r--src/core/hle/kernel/svc/svc_resource_limit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_resource_limit.cpp b/src/core/hle/kernel/svc/svc_resource_limit.cpp
index 732bc017e..c8e820b6a 100644
--- a/src/core/hle/kernel/svc/svc_resource_limit.cpp
+++ b/src/core/hle/kernel/svc/svc_resource_limit.cpp
@@ -21,7 +21,7 @@ Result CreateResourceLimit(Core::System& system, Handle* out_handle) {
SCOPE_EXIT({ resource_limit->Close(); });
// Initialize the resource limit.
- resource_limit->Initialize(std::addressof(system.CoreTiming()));
+ resource_limit->Initialize();
// Register the limit.
KResourceLimit::Register(kernel, resource_limit);