summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-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 95d6e2b4d..0cd712d09 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -2003,7 +2003,7 @@ static ResultCode GetThreadCoreMask(Core::System& system, Handle thread_handle,
2003 } 2003 }
2004 2004
2005 *core = thread->GetIdealCore(); 2005 *core = thread->GetIdealCore();
2006 *mask = thread->GetAffinityMask(); 2006 *mask = thread->GetAffinityMask().GetAffinityMask();
2007 2007
2008 return RESULT_SUCCESS; 2008 return RESULT_SUCCESS;
2009} 2009}