diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-22 21:58:00 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-22 21:58:11 +0100 |
commit | f820e58be4532d7c845c828ba6ec609a5b277723 (patch) | |
tree | a42d50e1d662bee9bcb88b218fac8405f82cefbf /src/core/hle/service/am/applets | |
parent | applets: Add StubApplet (diff) | |
download | yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar.gz yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar.bz2 yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar.lz yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar.xz yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.tar.zst yuzu-f820e58be4532d7c845c828ba6ec609a5b277723.zip |
Diffstat (limited to 'src/core/hle/service/am/applets')
-rw-r--r-- | src/core/hle/service/am/applets/stub_applet.cpp | 5 | ||||
-rw-r--r-- | src/core/hle/service/am/applets/stub_applet.h | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/core/hle/service/am/applets/stub_applet.cpp b/src/core/hle/service/am/applets/stub_applet.cpp index c9bd3d973..ed166b87d 100644 --- a/src/core/hle/service/am/applets/stub_applet.cpp +++ b/src/core/hle/service/am/applets/stub_applet.cpp @@ -2,7 +2,12 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <string> + #include "common/hex_util.h" +#include "common/logging/log.h" +#include "core/hle/result.h" +#include "core/hle/service/am/am.h" #include "core/hle/service/am/applets/stub_applet.h" namespace Service::AM::Applets { diff --git a/src/core/hle/service/am/applets/stub_applet.h b/src/core/hle/service/am/applets/stub_applet.h index 41add5fe6..7d8dc968d 100644 --- a/src/core/hle/service/am/applets/stub_applet.h +++ b/src/core/hle/service/am/applets/stub_applet.h @@ -4,13 +4,6 @@ #pragma once -#include <array> -#include <string> -#include <vector> - -#include "common/common_funcs.h" -#include "common/swap.h" -#include "core/hle/service/am/am.h" #include "core/hle/service/am/applets/applets.h" namespace Service::AM::Applets { |