mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-21 19:43:34 +00: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