Skip to content

Commit e88719b

Browse files
authoredApr 17, 2020
Rename "subgame" to "game" in 2 error messages (#9680)
1 parent 7539267 commit e88719b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ static bool determine_subgame(GameParams *game_params)
781781
gamespec = findSubgame(g_settings->get("default_game"));
782782
infostream << "Using default gameid [" << gamespec.id << "]" << std::endl;
783783
if (!gamespec.isValid()) {
784-
errorstream << "Subgame specified in default_game ["
784+
errorstream << "Game specified in default_game ["
785785
<< g_settings->get("default_game")
786786
<< "] is invalid." << std::endl;
787787
return false;
@@ -806,7 +806,7 @@ static bool determine_subgame(GameParams *game_params)
806806
}
807807

808808
if (!gamespec.isValid()) {
809-
errorstream << "Subgame [" << gamespec.id << "] could not be found."
809+
errorstream << "Game [" << gamespec.id << "] could not be found."
810810
<< std::endl;
811811
return false;
812812
}

0 commit comments

Comments
 (0)
Please sign in to comment.