summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-29 15:14:12 +0100
committerZach Hilman <zachhilman@gmail.com>2018-11-29 15:14:20 +0100
commit170d7078507745fee4c8952aa5888108b2b76b91 (patch)
tree6bc3c4cbbe36518a7e9b8e62a6b4042cb420861e /src/core/hle/service/am
parentkernel/event: Reference ReadableEvent from WritableEvent (diff)
downloadyuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.gz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.bz2
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.lz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.xz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.zst
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/am.cpp1
-rw-r--r--src/core/hle/service/am/applets/applets.h6
2 files changed, 2 insertions, 5 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index a3e0df9bf..3a7b6da84 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -302,6 +302,7 @@ void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext&
IPC::ResponseBuilder rb{ctx, 2, 1};
rb.Push(RESULT_SUCCESS);
rb.PushCopyObjects(launchable_event.readable);
+}
void ISelfController::SetScreenShotImageOrientation(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_AM, "(STUBBED) called");
diff --git a/src/core/hle/service/am/applets/applets.h b/src/core/hle/service/am/applets/applets.h
index 3eff471eb..b0a8913c3 100644
--- a/src/core/hle/service/am/applets/applets.h
+++ b/src/core/hle/service/am/applets/applets.h
@@ -8,14 +8,10 @@
#include <queue>
#include "common/swap.h"
#include "core/hle/kernel/kernel.h"
+#include "core/hle/kernel/writable_event.h"
union ResultCode;
-namespace Kernel {
-class ReadableEvent;
-class WritableEvent;
-} // namespace Kernel
-
namespace Service::AM {
class IStorage;