Adjusted save file name; fixed .gitignore

This commit is contained in:
Mathew Velasquez 2016-11-04 17:58:15 -04:00
parent c0a3cda160
commit 90eb18a8ac
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -5,7 +5,7 @@
*.exe
*.bmp
/Makefile*
Makefile*
/oneshot
/steamshim_parent/steamshim

View file

@ -98,7 +98,7 @@ int do_journal()
// Default image
WCHAR save_path[MAX_PATH];
SHGetFolderPathW(NULL, CSIDL_PERSONAL, NULL, 0, save_path);
wcscat(save_path, L"\\My Games\\Oneshot\\progress.oneshot");
wcscat(save_path, L"\\My Games\\Oneshot\\save_progress.oneshot");
if (PathFileExistsW(save_path)) {
loadImage("save");
} else {