Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kphoenix137 committed Oct 7, 2023
1 parent 4b92546 commit 18b2a1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/automap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ void DrawAutomapText(const Surface &out)
} else if (!PublicGame && !StreamerMode) {
description = std::string(_("Password: "));
description.append(GamePassword);
} else {
} else if (!StreamerMode) {
description = std::string(_("Public Game"));
}
DrawString(out, description, linePosition);
Expand Down
1 change: 1 addition & 0 deletions Source/multi.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ extern DVL_API_FOR_TEST bool gbIsMultiplayer;
extern std::string GameName;
extern std::string GamePassword;
extern bool PublicGame;
extern bool StreamerMode;
extern uint8_t gbDeltaSender;
extern uint32_t player_state[MAX_PLRS];
extern bool IsLoopback;
Expand Down

0 comments on commit 18b2a1e

Please sign in to comment.