diff options
| author | bunnei <bunneidev@gmail.com> | 2016-02-03 12:14:48 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-02-03 12:14:48 -0500 |
| commit | 7497675a839a593049f96aa3337719e9c0a8b4e5 (patch) | |
| tree | bd228bf0eb1f207ce121ac3f75a13eef33b13490 /src/core/hle/service/ptm | |
| parent | 30fd5d9e9695758e7a10535a2709fa520f796aaa (diff) | |
| parent | 0937bed8d8d7102bf9bd5afa1192736eb03de021 (diff) | |
Merge pull request #1387 from lioncash/func
services: minor changes
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 @@ #pragma once -#include <array> -#include "core/hle/service/service.h" -#include "core/hle/result.h" +#include "common/common_types.h" namespace Service { + +class Interface; + namespace PTM { /// 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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "core/hle/hle.h" #include "core/hle/service/ptm/ptm_play.h" 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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "core/hle/hle.h" #include "core/hle/service/ptm/ptm.h" #include "core/hle/service/ptm/ptm_sysm.h" 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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "common/logging/log.h" - -#include "core/hle/hle.h" #include "core/hle/service/ptm/ptm.h" #include "core/hle/service/ptm/ptm_u.h" |
