diff options
| author | 2016-02-02 01:17:41 -0500 | |
|---|---|---|
| committer | 2016-02-02 01:40:23 -0500 | |
| commit | 0937bed8d8d7102bf9bd5afa1192736eb03de021 (patch) | |
| tree | 6b978948b52b218b6c8b74793caca50a62200f34 /src/core/hle/service/ptm | |
| parent | services: Update function tables (diff) | |
| download | yuzu-0937bed8d8d7102bf9bd5afa1192736eb03de021.tar.gz yuzu-0937bed8d8d7102bf9bd5afa1192736eb03de021.tar.xz yuzu-0937bed8d8d7102bf9bd5afa1192736eb03de021.zip | |
services: Get rid of unnecessary includes
Diffstat (limited to 'src/core/hle/service/ptm')
| -rw-r--r-- | src/core/hle/service/ptm/ptm.h | 7 | ||||
| -rw-r--r-- | src/core/hle/service/ptm/ptm_play.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/ptm/ptm_sysm.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/ptm/ptm_u.cpp | 3 |
4 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/service/ptm/ptm.h b/src/core/hle/service/ptm/ptm.h index f2e76441f..4cf7383d1 100644 --- a/src/core/hle/service/ptm/ptm.h +++ b/src/core/hle/service/ptm/ptm.h | |||
| @@ -4,11 +4,12 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include "common/common_types.h" |
| 8 | #include "core/hle/service/service.h" | ||
| 9 | #include "core/hle/result.h" | ||
| 10 | 8 | ||
| 11 | namespace Service { | 9 | namespace Service { |
| 10 | |||
| 11 | class Interface; | ||
| 12 | |||
| 12 | namespace PTM { | 13 | namespace PTM { |
| 13 | 14 | ||
| 14 | /// Charge levels used by PTM functions | 15 | /// Charge levels used by PTM functions |
diff --git a/src/core/hle/service/ptm/ptm_play.cpp b/src/core/hle/service/ptm/ptm_play.cpp index 7bb990193..ca5dd0403 100644 --- a/src/core/hle/service/ptm/ptm_play.cpp +++ b/src/core/hle/service/ptm/ptm_play.cpp | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "core/hle/hle.h" | ||
| 6 | #include "core/hle/service/ptm/ptm_play.h" | 5 | #include "core/hle/service/ptm/ptm_play.h" |
| 7 | 6 | ||
| 8 | namespace Service { | 7 | namespace Service { |
diff --git a/src/core/hle/service/ptm/ptm_sysm.cpp b/src/core/hle/service/ptm/ptm_sysm.cpp index 3ecfab05c..fe76dd108 100644 --- a/src/core/hle/service/ptm/ptm_sysm.cpp +++ b/src/core/hle/service/ptm/ptm_sysm.cpp | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "core/hle/hle.h" | ||
| 6 | #include "core/hle/service/ptm/ptm.h" | 5 | #include "core/hle/service/ptm/ptm.h" |
| 7 | #include "core/hle/service/ptm/ptm_sysm.h" | 6 | #include "core/hle/service/ptm/ptm_sysm.h" |
| 8 | 7 | ||
diff --git a/src/core/hle/service/ptm/ptm_u.cpp b/src/core/hle/service/ptm/ptm_u.cpp index 09dc38c3e..17e764866 100644 --- a/src/core/hle/service/ptm/ptm_u.cpp +++ b/src/core/hle/service/ptm/ptm_u.cpp | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "common/logging/log.h" | ||
| 6 | |||
| 7 | #include "core/hle/hle.h" | ||
| 8 | #include "core/hle/service/ptm/ptm.h" | 5 | #include "core/hle/service/ptm/ptm.h" |
| 9 | #include "core/hle/service/ptm/ptm_u.h" | 6 | #include "core/hle/service/ptm/ptm_u.h" |
| 10 | 7 | ||