mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 14:38:19 -05:00
general: fixes for gcc 13
This commit is contained in:
@ -21,7 +21,7 @@ bool VerifyLogin(const std::string& host, const std::string& username, const std
|
||||
return username.empty();
|
||||
}
|
||||
|
||||
return username == *iter;
|
||||
return *iter == username;
|
||||
}
|
||||
|
||||
} // namespace WebService
|
||||
|
Reference in New Issue
Block a user