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