From a5e1f3bcad16949b7132bd91fa6977650d4bdb94 Mon Sep 17 00:00:00 2001 From: Professor Hastig Date: Thu, 14 Sep 2023 09:06:36 +0200 Subject: [PATCH] - fixed M_GetSavegamesPath for Linux. --- src/common/platform/posix/unix/i_specialpaths.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/platform/posix/unix/i_specialpaths.cpp b/src/common/platform/posix/unix/i_specialpaths.cpp index 524f94c606..f844f0dd04 100644 --- a/src/common/platform/posix/unix/i_specialpaths.cpp +++ b/src/common/platform/posix/unix/i_specialpaths.cpp @@ -191,7 +191,7 @@ FString M_GetScreenshotsPath() FString M_GetSavegamesPath() { - return NicePath("$HOME/" GAME_DIR "/"); + return NicePath("$HOME/" GAME_DIR "/savegames/"); } //===========================================================================