diff options
| author | 2022-04-06 18:34:45 -0700 | |
|---|---|---|
| committer | 2022-04-06 18:34:45 -0700 | |
| commit | 172137f1a08cf5a702ca6da6ecba0329b10e0ed7 (patch) | |
| tree | dd5f1a3ffbc709e9fa2fd5ad53c24146fc318486 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #8122 from bunnei/improve-thread-usage (diff) | |
| parent | service: jit: stub JIT service (diff) | |
| download | yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.gz yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.tar.xz yuzu-172137f1a08cf5a702ca6da6ecba0329b10e0ed7.zip | |
Merge pull request #8164 from liamwhite/jit-stub
service: jit: stub JIT service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 8d902beb9..0f59a03c5 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include "core/hle/service/glue/glue.h" | 32 | #include "core/hle/service/glue/glue.h" |
| 33 | #include "core/hle/service/grc/grc.h" | 33 | #include "core/hle/service/grc/grc.h" |
| 34 | #include "core/hle/service/hid/hid.h" | 34 | #include "core/hle/service/hid/hid.h" |
| 35 | #include "core/hle/service/jit/jit.h" | ||
| 35 | #include "core/hle/service/lbl/lbl.h" | 36 | #include "core/hle/service/lbl/lbl.h" |
| 36 | #include "core/hle/service/ldn/ldn.h" | 37 | #include "core/hle/service/ldn/ldn.h" |
| 37 | #include "core/hle/service/ldr/ldr.h" | 38 | #include "core/hle/service/ldr/ldr.h" |
| @@ -262,6 +263,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system | |||
| 262 | Glue::InstallInterfaces(system); | 263 | Glue::InstallInterfaces(system); |
| 263 | GRC::InstallInterfaces(*sm, system); | 264 | GRC::InstallInterfaces(*sm, system); |
| 264 | HID::InstallInterfaces(*sm, system); | 265 | HID::InstallInterfaces(*sm, system); |
| 266 | JIT::InstallInterfaces(*sm, system); | ||
| 265 | LBL::InstallInterfaces(*sm, system); | 267 | LBL::InstallInterfaces(*sm, system); |
| 266 | LDN::InstallInterfaces(*sm, system); | 268 | LDN::InstallInterfaces(*sm, system); |
| 267 | LDR::InstallInterfaces(*sm, system); | 269 | LDR::InstallInterfaces(*sm, system); |