fix persistence for changed file structure

`data/save` -> `save`
develop
Kelly Kinkade 2023-01-06 21:24:01 -06:00
parent 18e17e4e36
commit 3e4861b54b
1 changed files with 1 additions and 1 deletions

@ -387,7 +387,7 @@ static std::string filterSaveFileName(std::string s)
static std::string getSaveFilePath(const std::string &world, const std::string &name)
{
return "data/save/" + world + "/dfhack-" + filterSaveFileName(name) + ".dat";
return "save/" + world + "/dfhack-" + filterSaveFileName(name) + ".dat";
}
#if defined(__GNUC__) && __GNUC__ < 5