summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-12-05 08:37:13 -0500
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-12-05 08:37:13 -0500
commitf6d4a289d53516789ceb5f90f086ffe8b2822115 (patch)
tree4d2bc21537da98af842e3a102fd0e08439ad1cf9 /src/core
parentf2f346e1104106eb9323f0e141e0e67312c29849 (diff)
applets: Resolve variable shadowing
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/am/applets/general_backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/general_backend.cpp b/src/core/hle/service/am/applets/general_backend.cpp
index bdb6fd464..ccce83de3 100644
--- a/src/core/hle/service/am/applets/general_backend.cpp
+++ b/src/core/hle/service/am/applets/general_backend.cpp
@@ -136,7 +136,7 @@ void Auth::Execute() {
}
void Auth::AuthFinished(bool is_successful) {
- this->successful = is_successful;
+ successful = is_successful;
struct Return {
ResultCode result_code;