diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-06 07:15:46 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-07 04:45:06 +0200 |
commit | 6f89d25f908e6c08e1cf20546b43dc269a93409b (patch) | |
tree | 75794cffbb83049401e50741d55fe3b38115e521 /src/core/hle/service/ptm | |
parent | Move typedefs from kernel.h to more appropriate places (diff) | |
download | yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar.gz yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar.bz2 yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar.lz yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar.xz yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.tar.zst yuzu-6f89d25f908e6c08e1cf20546b43dc269a93409b.zip |
Diffstat (limited to 'src/core/hle/service/ptm')
-rw-r--r-- | src/core/hle/service/ptm/ptm.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp index d44510c1b..6480a323d 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp @@ -2,12 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "core/hle/service/service.h" +#include "core/file_sys/file_backend.h" #include "core/hle/service/fs/archive.h" #include "core/hle/service/ptm/ptm.h" #include "core/hle/service/ptm/ptm_play.h" #include "core/hle/service/ptm/ptm_sysm.h" #include "core/hle/service/ptm/ptm_u.h" +#include "core/hle/service/service.h" namespace Service { namespace PTM { |