From f94b9adf7a05e049f0c47075a9c5c375ea0af6f8 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Sat, 22 Jun 2024 23:26:10 +0200 Subject: [PATCH] print game's U S E R path --- src/GameStart.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GameStart.cpp b/src/GameStart.cpp index ac99d63..6e49db9 100644 --- a/src/GameStart.cpp +++ b/src/GameStart.cpp @@ -51,6 +51,7 @@ std::string GetGamePath() { std::string Ver = CheckVer(GetGameDir()); Ver = Ver.substr(0, Ver.find('.', Ver.find('.') + 1)); Path += Ver + "\\"; + info("Game user path: '" + Path + "'"); return Path; } #elif defined(__linux__) @@ -63,6 +64,7 @@ std::string GetGamePath() { std::string Ver = CheckVer(GetGameDir()); Ver = Ver.substr(0, Ver.find('.', Ver.find('.') + 1)); Path += Ver + "/"; + info("Game user path: '" + Path + "'"); return Path; } #endif