Skip to content

Commit

Permalink
fix unisgned comparision warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgtdf committed Nov 15, 2017
1 parent d20dcc2 commit 7617863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/multiplayer/mp_create_game.cpp
Expand Up @@ -403,7 +403,7 @@ void mp_create_game::pre_show(window& win)

void mp_create_game::sync_with_depcheck(window& window)
{
if (create_engine_.current_era_index() != create_engine_.dependency_manager().get_era_index()) {
if (static_cast<int>(create_engine_.current_era_index()) != create_engine_.dependency_manager().get_era_index()) {

int new_era_index = create_engine_.dependency_manager().get_era_index();

Expand Down

0 comments on commit 7617863

Please sign in to comment.