From 02fbd42e7f006236199698c61ca917092afa1f7d Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 11 Apr 2014 18:44:21 -0400 Subject: - renamed hle_syscall to just syscall - added service.h as an initial service interface --- src/core/hle/hle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hle/hle.cpp') diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp index d62d2d0c..32aff0eb 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp @@ -5,7 +5,7 @@ #include #include "core/hle/hle.h" -#include "core/hle/hle_syscall.h" +#include "core/hle/syscall.h" //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -41,7 +41,7 @@ void RegisterModule(std::string name, int num_functions, const FunctionDef* func } void RegisterAllModules() { - Register_Syscall(); + Syscall::Register(); } void Init() { -- cgit v1.2.3