summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-01-04 03:11:17 +0100
committerDavid Marcec <dmarcecguzman@gmail.com>2019-01-04 03:11:17 +0100
commitf2536cafe55aa3cd70a201d3befaae0c1695698b (patch)
tree6816d47a7281ea4a613d1ded0be60feba7191004 /src/core/hle/service/am/am.cpp
parentMerge pull request #1724 from FearlessTobi/port-4412 (diff)
downloadyuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar.gz
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar.bz2
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar.lz
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar.xz
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.tar.zst
yuzu-f2536cafe55aa3cd70a201d3befaae0c1695698b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index d13ce4dca..7a5e9d216 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -38,6 +38,7 @@
namespace Service::AM {
constexpr ResultCode ERR_NO_DATA_IN_CHANNEL{ErrorModule::AM, 0x2};
+constexpr ResultCode ERR_NO_MESSAGES{ErrorModule::AM, 0x3};
constexpr ResultCode ERR_SIZE_OUT_OF_BOUNDS{ErrorModule::AM, 0x1F7};
enum class AppletId : u32 {
@@ -460,9 +461,17 @@ void ICommonStateGetter::GetEventHandle(Kernel::HLERequestContext& ctx) {
void ICommonStateGetter::ReceiveMessage(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_AM, "called");
+ const auto message = msg_queue->PopMessage();
IPC::ResponseBuilder rb{ctx, 3};
+
+ if (message == AppletMessageQueue::AppletMessage::NoMessage) {
+ LOG_ERROR(Service_AM, "Message queue is empty");
+ rb.Push(ERR_NO_MESSAGES);
+ rb.PushEnum<AppletMessageQueue::AppletMessage>(message);
+ return;
+ }
rb.Push(RESULT_SUCCESS);
- rb.PushEnum<AppletMessageQueue::AppletMessage>(msg_queue->PopMessage());
+ rb.PushEnum<AppletMessageQueue::AppletMessage>(message);
}
void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) {