diff options
| author | 2014-04-11 18:44:21 -0400 | |
|---|---|---|
| committer | 2014-04-11 18:44:21 -0400 | |
| commit | 02fbd42e7f006236199698c61ca917092afa1f7d (patch) | |
| tree | b60bd6801f624839dc80b53dffb523fa98b7b46f /src/core/hle/hle.cpp | |
| parent | replace tabs with spaces (diff) | |
| download | yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.gz yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.tar.xz yuzu-02fbd42e7f006236199698c61ca917092afa1f7d.zip | |
- renamed hle_syscall to just syscall
- added service.h as an initial service interface
Diffstat (limited to 'src/core/hle/hle.cpp')
| -rw-r--r-- | src/core/hle/hle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp index d62d2d0ce..32aff0eb5 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #include <vector> | 5 | #include <vector> |
| 6 | 6 | ||
| 7 | #include "core/hle/hle.h" | 7 | #include "core/hle/hle.h" |
| 8 | #include "core/hle/hle_syscall.h" | 8 | #include "core/hle/syscall.h" |
| 9 | 9 | ||
| 10 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 10 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 11 | 11 | ||
| @@ -41,7 +41,7 @@ void RegisterModule(std::string name, int num_functions, const FunctionDef* func | |||
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | void RegisterAllModules() { | 43 | void RegisterAllModules() { |
| 44 | Register_Syscall(); | 44 | Syscall::Register(); |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | void Init() { | 47 | void Init() { |