fixed a logic error
This commit is contained in:
parent
fba3dd795c
commit
2d1de6ce2e
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ bool game_controller::load_game()
|
|||
}
|
||||
|
||||
const std::string version = cfg["version"];
|
||||
if (utils::wildcard_string_match(version, "1.4*")) {
|
||||
if (!utils::wildcard_string_match(version, "1.4*")) {
|
||||
// do not load if too old, if either the savegame or the current game
|
||||
// has the version 'test' allow loading
|
||||
if(version < game_config::min_savegame_version &&
|
||||
|
|
Loading…
Add table
Reference in a new issue