From b63b3ba8f32210be644f2bffab503b698326b07a Mon Sep 17 00:00:00 2001 From: Mathew Velasquez Date: Thu, 18 Feb 2016 18:23:16 -0500 Subject: [PATCH] Renamed save data to .dat for easier Steam cloud integration --- scripts/SaveLoad.rb | 2 +- src/keybindings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)