diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-14 00:52:17 -0400 |
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-14 02:09:14 -0400 |
| commit | c6d7da88c7ab125279ea4ccad0e3e839632b2f7a (patch) | |
| tree | 8591def7815ce7cc9156d87e0d62567584db1a23 /src/core/hle/service/apm | |
| parent | 79824d7d1b69382571e5c05fe3e66485212d06f5 (diff) | |
service: Append service name prefix to common filenames
Diffstat (limited to 'src/core/hle/service/apm')
| -rw-r--r-- | src/core/hle/service/apm/apm.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm_controller.cpp (renamed from src/core/hle/service/apm/controller.cpp) | 2 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm_controller.h (renamed from src/core/hle/service/apm/controller.h) | 0 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm_interface.cpp (renamed from src/core/hle/service/apm/interface.cpp) | 4 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm_interface.h (renamed from src/core/hle/service/apm/interface.h) | 0 |
5 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/apm/apm.cpp b/src/core/hle/service/apm/apm.cpp index 97d6619dd..f5ebfe8d6 100644 --- a/src/core/hle/service/apm/apm.cpp +++ b/src/core/hle/service/apm/apm.cpp @@ -5,7 +5,7 @@ #include "core/core.h" #include "core/hle/ipc_helpers.h" #include "core/hle/service/apm/apm.h" -#include "core/hle/service/apm/interface.h" +#include "core/hle/service/apm/apm_interface.h" namespace Service::APM { diff --git a/src/core/hle/service/apm/controller.cpp b/src/core/hle/service/apm/apm_controller.cpp index 8bfa7c0e4..98839fe97 100644 --- a/src/core/hle/service/apm/controller.cpp +++ b/src/core/hle/service/apm/apm_controller.cpp @@ -9,7 +9,7 @@ #include "common/logging/log.h" #include "common/settings.h" #include "core/core_timing.h" -#include "core/hle/service/apm/controller.h" +#include "core/hle/service/apm/apm_controller.h" namespace Service::APM { diff --git a/src/core/hle/service/apm/controller.h b/src/core/hle/service/apm/apm_controller.h index 8d48e0104..8d48e0104 100644 --- a/src/core/hle/service/apm/controller.h +++ b/src/core/hle/service/apm/apm_controller.h diff --git a/src/core/hle/service/apm/interface.cpp b/src/core/hle/service/apm/apm_interface.cpp index d69ddd135..e58bad083 100644 --- a/src/core/hle/service/apm/interface.cpp +++ b/src/core/hle/service/apm/apm_interface.cpp @@ -5,8 +5,8 @@ #include "common/logging/log.h" #include "core/hle/ipc_helpers.h" #include "core/hle/service/apm/apm.h" -#include "core/hle/service/apm/controller.h" -#include "core/hle/service/apm/interface.h" +#include "core/hle/service/apm/apm_controller.h" +#include "core/hle/service/apm/apm_interface.h" namespace Service::APM { diff --git a/src/core/hle/service/apm/interface.h b/src/core/hle/service/apm/apm_interface.h index 063ad5308..063ad5308 100644 --- a/src/core/hle/service/apm/interface.h +++ b/src/core/hle/service/apm/apm_interface.h |
