mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 04:04:53 +01:00
Fixes to matchmaking and friends.
This commit is contained in:
parent
e100c89160
commit
ba25559920
2 changed files with 10 additions and 9 deletions
|
|
@ -1187,7 +1187,11 @@ void RunCallbacks()
|
|||
} else {
|
||||
try {
|
||||
PRINT_DEBUG("%s\n", value->second.c_str());
|
||||
int compare_to = std::stoll(value->second, 0, 0);
|
||||
int compare_to = 0;
|
||||
//TODO: check if this is how real steam behaves
|
||||
if (value->second.size()) {
|
||||
compare_to = std::stoll(value->second, 0, 0);
|
||||
}
|
||||
PRINT_DEBUG("Compare Values %i %i\n", compare_to, f.value_int);
|
||||
if (f.eComparisonType == k_ELobbyComparisonEqual) {
|
||||
if (compare_to == f.value_int) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue