Skip to content

Commit

Permalink
fixup e7eb08d
Browse files Browse the repository at this point in the history
I'm not sure how the '=' became a comma, I could have sworn I
typed '='. Also strange that it compiled, and that the commit
appeared to help the bug...
  • Loading branch information
cbeck88 committed Jul 11, 2014
1 parent 71d867a commit 1cf2747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/savegame.cpp
Expand Up @@ -707,7 +707,7 @@ void loadgame::fill_mplevel_config(config& level){
// is empty the starting position contains the wanted info.
const config& start_data = !gamestate_.snapshot.empty() ? gamestate_.snapshot : gamestate_.replay_start();

level["map_data"], start_data["map_data"];
level["map_data"] = start_data["map_data"];
level["id"] = start_data["id"];
level["name"] = start_data["name"];
level["completion"] = start_data["completion"];
Expand Down

0 comments on commit 1cf2747

Please sign in to comment.