diff options
| author | 2021-07-14 00:52:17 -0400 | |
|---|---|---|
| committer | 2021-07-14 02:09:14 -0400 | |
| commit | c6d7da88c7ab125279ea4ccad0e3e839632b2f7a (patch) | |
| tree | 8591def7815ce7cc9156d87e0d62567584db1a23 /src/core/hle/service/spl | |
| parent | applets: Append applet_ prefix to backend applets (diff) | |
| download | yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.gz yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.tar.xz yuzu-c6d7da88c7ab125279ea4ccad0e3e839632b2f7a.zip | |
service: Append service name prefix to common filenames
Diffstat (limited to 'src/core/hle/service/spl')
| -rw-r--r-- | src/core/hle/service/spl/csrng.h | 2 | ||||
| -rw-r--r-- | src/core/hle/service/spl/spl.h | 2 | ||||
| -rw-r--r-- | src/core/hle/service/spl/spl_module.cpp (renamed from src/core/hle/service/spl/module.cpp) | 2 | ||||
| -rw-r--r-- | src/core/hle/service/spl/spl_module.h (renamed from src/core/hle/service/spl/module.h) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/spl/csrng.h b/src/core/hle/service/spl/csrng.h index 5c0bd2199..0d03cc6cb 100644 --- a/src/core/hle/service/spl/csrng.h +++ b/src/core/hle/service/spl/csrng.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/service/spl/module.h" | 7 | #include "core/hle/service/spl/spl_module.h" |
| 8 | 8 | ||
| 9 | namespace Core { | 9 | namespace Core { |
| 10 | class System; | 10 | class System; |
diff --git a/src/core/hle/service/spl/spl.h b/src/core/hle/service/spl/spl.h index 9b35012ed..5599c0c01 100644 --- a/src/core/hle/service/spl/spl.h +++ b/src/core/hle/service/spl/spl.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/service/spl/module.h" | 7 | #include "core/hle/service/spl/spl_module.h" |
| 8 | 8 | ||
| 9 | namespace Core { | 9 | namespace Core { |
| 10 | class System; | 10 | class System; |
diff --git a/src/core/hle/service/spl/module.cpp b/src/core/hle/service/spl/spl_module.cpp index ebb179aa8..918633af5 100644 --- a/src/core/hle/service/spl/module.cpp +++ b/src/core/hle/service/spl/spl_module.cpp | |||
| @@ -13,8 +13,8 @@ | |||
| 13 | #include "core/hle/api_version.h" | 13 | #include "core/hle/api_version.h" |
| 14 | #include "core/hle/ipc_helpers.h" | 14 | #include "core/hle/ipc_helpers.h" |
| 15 | #include "core/hle/service/spl/csrng.h" | 15 | #include "core/hle/service/spl/csrng.h" |
| 16 | #include "core/hle/service/spl/module.h" | ||
| 17 | #include "core/hle/service/spl/spl.h" | 16 | #include "core/hle/service/spl/spl.h" |
| 17 | #include "core/hle/service/spl/spl_module.h" | ||
| 18 | 18 | ||
| 19 | namespace Service::SPL { | 19 | namespace Service::SPL { |
| 20 | 20 | ||
diff --git a/src/core/hle/service/spl/module.h b/src/core/hle/service/spl/spl_module.h index 61630df80..61630df80 100644 --- a/src/core/hle/service/spl/module.h +++ b/src/core/hle/service/spl/spl_module.h | |||