summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle_syscall.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-11 04:15:07 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-11 04:15:07 +0200
commit3bd041f5b0cd481ded892594d569462492679e39 (patch)
tree6f4c64d1ae09983b8c4d2b8c10f3fa51bef01507 /src/core/hle/hle_syscall.cpp
parent- removed syscall classes (will just use HLEFunction) (diff)
downloadyuzu-3bd041f5b0cd481ded892594d569462492679e39.tar
yuzu-3bd041f5b0cd481ded892594d569462492679e39.tar.gz
yuzu-3bd041f5b0cd481ded892594d569462492679e39.tar.bz2
yuzu-3bd041f5b0cd481ded892594d569462492679e39.tar.lz
yuzu-3bd041f5b0cd481ded892594d569462492679e39.tar.xz
yuzu-3bd041f5b0cd481ded892594d569462492679e39.tar.zst
yuzu-3bd041f5b0cd481ded892594d569462492679e39.zip
Diffstat (limited to 'src/core/hle/hle_syscall.cpp')
-rw-r--r--src/core/hle/hle_syscall.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/hle_syscall.cpp b/src/core/hle/hle_syscall.cpp
index b17a2e220..fdcaa914f 100644
--- a/src/core/hle/hle_syscall.cpp
+++ b/src/core/hle/hle_syscall.cpp
@@ -15,10 +15,10 @@ Result SVC_ConnectToPort(void* out, const char* port_name) {
return 0;
}
-const HLEFunction SysCallTable[] = {
+const HLE::FunctionDef SysCall_Table[] = {
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
};
void Register_SysCall() {
- HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCallTable), SysCallTable);
+ HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCall_Table), SysCall_Table);
}