diff options
author | german77 <juangerman-13@hotmail.com> | 2022-02-08 16:53:53 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-02-08 18:52:44 -0600 |
commit | e35c2fd5d0b58742d5da6682b3fb7ee4bc00204d (patch) | |
tree | 2a8df3161f18448e82488bf3ad97ae07063e2173 /src/yuzu/main.cpp | |
parent | 29f9a454eb2597eb50db68c31cb655c51de72dae (diff) |
nfp: Address compiler issues
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 3955276074..a67ab030be 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2915,8 +2915,7 @@ void GMainWindow::OnLoadAmiibo() { Service::SM::ServiceManager& sm = system->ServiceManager(); auto nfc = sm.GetService<Service::NFP::Module::Interface>("nfp:user"); if (nfc == nullptr) { - QMessageBox::warning(this, tr("Error"), - tr("The current game is not looking for amiibos")); + QMessageBox::warning(this, tr("Error"), tr("The current game is not looking for amiibos")); return; } const auto nfc_state = nfc->GetCurrentState(); |