summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-18 01:22:43 +0200
committerLioncash <mathew1800@gmail.com>2020-04-18 01:22:46 +0200
commit64f226889c56c516bea7fbd02c38c1fd8249d255 (patch)
treeff992d2a8c5946c63d23392379e59f3d9f249efa /src/core/hle
parentMerge pull request #3666 from bunnei/new-vmm (diff)
downloadyuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar.gz
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar.bz2
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar.lz
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar.xz
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.tar.zst
yuzu-64f226889c56c516bea7fbd02c38c1fd8249d255.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 557608e76..3ece2cf3c 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -903,7 +903,7 @@ private:
void PopOutData(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_AM, "called");
- const auto storage = applet->GetBroker().PopNormalDataToGame();
+ auto storage = applet->GetBroker().PopNormalDataToGame();
if (storage == nullptr) {
LOG_ERROR(Service_AM,
"storage is a nullptr. There is no data in the current normal channel");
@@ -934,7 +934,7 @@ private:
void PopInteractiveOutData(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_AM, "called");
- const auto storage = applet->GetBroker().PopInteractiveDataToGame();
+ auto storage = applet->GetBroker().PopInteractiveDataToGame();
if (storage == nullptr) {
LOG_ERROR(Service_AM,
"storage is a nullptr. There is no data in the current interactive channel");