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/pctl | |
| 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/pctl')
| -rw-r--r-- | src/core/hle/service/pctl/pctl.h | 2 | ||||
| -rw-r--r-- | src/core/hle/service/pctl/pctl_module.cpp (renamed from src/core/hle/service/pctl/module.cpp) | 2 | ||||
| -rw-r--r-- | src/core/hle/service/pctl/pctl_module.h (renamed from src/core/hle/service/pctl/module.h) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/pctl/pctl.h b/src/core/hle/service/pctl/pctl.h index ea3b97823..1d28900b2 100644 --- a/src/core/hle/service/pctl/pctl.h +++ b/src/core/hle/service/pctl/pctl.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/service/pctl/module.h" | 7 | #include "core/hle/service/pctl/pctl_module.h" |
| 8 | 8 | ||
| 9 | namespace Core { | 9 | namespace Core { |
| 10 | class System; | 10 | class System; |
diff --git a/src/core/hle/service/pctl/module.cpp b/src/core/hle/service/pctl/pctl_module.cpp index 1e31d05a6..6949fcf3b 100644 --- a/src/core/hle/service/pctl/module.cpp +++ b/src/core/hle/service/pctl/pctl_module.cpp | |||
| @@ -8,8 +8,8 @@ | |||
| 8 | #include "core/file_sys/patch_manager.h" | 8 | #include "core/file_sys/patch_manager.h" |
| 9 | #include "core/hle/ipc_helpers.h" | 9 | #include "core/hle/ipc_helpers.h" |
| 10 | #include "core/hle/kernel/k_process.h" | 10 | #include "core/hle/kernel/k_process.h" |
| 11 | #include "core/hle/service/pctl/module.h" | ||
| 12 | #include "core/hle/service/pctl/pctl.h" | 11 | #include "core/hle/service/pctl/pctl.h" |
| 12 | #include "core/hle/service/pctl/pctl_module.h" | ||
| 13 | 13 | ||
| 14 | namespace Service::PCTL { | 14 | namespace Service::PCTL { |
| 15 | 15 | ||
diff --git a/src/core/hle/service/pctl/module.h b/src/core/hle/service/pctl/pctl_module.h index f25c5c557..f25c5c557 100644 --- a/src/core/hle/service/pctl/module.h +++ b/src/core/hle/service/pctl/pctl_module.h | |||