Skip to content

Commit

Permalink
Correct limbo droid save file.
Browse files Browse the repository at this point in the history
It was being saved as a .bjo file while using a .json format for the stored data.
Fixes ticket:4054.
  • Loading branch information
KJeff01 committed Jul 30, 2017
1 parent 9765b31 commit 8125a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game.cpp
Expand Up @@ -2837,7 +2837,7 @@ bool saveGame(const char *aFileName, GAME_TYPE saveType)
}

CurrentFileName[fileExtension] = '\0';
strcat(CurrentFileName, "limbo.bjo");
strcat(CurrentFileName, "limbo.json");
/*Write the swapped droid lists to the file*/
if (!writeDroidFile(CurrentFileName, apsLimboDroids))
{
Expand Down

0 comments on commit 8125a40

Please sign in to comment.