Browse Source
Merge pull request #3709 from lioncash/am
am: Resolve ineffective moves
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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"); |
|
|
|
|