Skip to content

Commit

Permalink
Change AUTOSAVE to Resources/Replay/AutoSave
Browse files Browse the repository at this point in the history
Also change perimeter_crash to CrashData
  • Loading branch information
IonAgorria committed Sep 13, 2023
1 parent fff23d8 commit 6c9a474
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/Source/cache_font
logfile.txt
perimeter.dxvk-cache
perimeter_crash
CrashData

# Build artifacts
/build
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/Source/cache_font
logfile.txt
perimeter.dxvk-cache
perimeter_crash
CrashData

# Build artifacts
/build
Expand Down
2 changes: 1 addition & 1 deletion Source/Network/HyperSpace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bool net_log_mode=0;
XBuffer net_log_buffer(8192, 1);

//XStream quantTimeLog("quantTime.log",XS_OUT);
const char* autoSavePlayReelDir = "AUTOSAVE";
const char* autoSavePlayReelDir = "RESOURCE\\Replay\\Autosave";


const char * KEY_REPLAY_REEL="replay";
Expand Down
2 changes: 1 addition & 1 deletion Source/XTool/files/files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ filesystem_entry* add_filesystem_entry_internal( // NOLINT(misc-no-recursion)
|| startsWith(entry_key, "cache")
|| startsWith(entry_key, "mods")
|| startsWith(entry_key, "scripts")
|| startsWith(entry_key, "autosave")
|| startsWith(entry_key, "crashdata")
|| endsWith(entry_key, ".ini")) {

bool path_is_directory = std::filesystem::is_directory(std::filesystem::u8path(path_content));
Expand Down
2 changes: 1 addition & 1 deletion Source/XTool/xerrhand.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define NULL 0L
#endif

#define CRASH_DIR "perimeter_crash"
#define CRASH_DIR "CrashData"

#define X_WINNT 0x0001
#define X_WIN32S 0x0002
Expand Down

0 comments on commit 6c9a474

Please sign in to comment.