Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
IonAgorria committed Apr 26, 2024
1 parent 5f421ae commit 29aefb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Source/Render/src/VisError.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ cVisError& cVisError::operator << (const char *a)
ErrH.Abort(buf.c_str());
}
buf.clear();
}else
buf+=a;
} else {
buf += a;
}
return *this;
}

Expand Down
3 changes: 2 additions & 1 deletion Source/UserInterface/Menu/MultiplayerList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,13 @@ std::string formatGameInfoWindow(const GameInfo& info) {
}

//Show version
text += "&FFFFFF - ";
if (info.gameVersion == currentShortVersion) {
text += "&FFFFFF";
} else {
text += "&FF2222";
}
text += " - " + info.gameVersion + "\n";
text += info.gameVersion + "\n";

//Show map
text += "&FFFFFF";
Expand Down

0 comments on commit 29aefb5

Please sign in to comment.