diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index 6e6f588..7135c2c 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -1,5 +1,5 @@ def save_file_name - Oneshot::SAVE_PATH + '/Save.rxdata' + Oneshot::SAVE_PATH + '/save.dat' end def save diff --git a/src/keybindings.cpp b/src/keybindings.cpp index 266bc50..4452688 100644 --- a/src/keybindings.cpp +++ b/src/keybindings.cpp @@ -167,7 +167,7 @@ struct Header static void buildPath(const std::string &dir, char *out, size_t outSize) { - snprintf(out, outSize, "%skeybindings", dir.c_str()); + snprintf(out, outSize, "%skeybindings.dat", dir.c_str()); } static bool writeBindings(const BDescVec &d, const std::string &dir)