fixed user path for regular DCS

This commit is contained in:
Vasyl Horbachenko 2018-07-16 22:05:42 +03:00
parent 58dd16219b
commit ce7d3a89c0

View File

@ -19,7 +19,7 @@ def base_path() -> str:
if os.path.exists(openbeta_path):
return openbeta_path
else:
return os.path.expanduser("~\Saved Games\DCS")
return os.path.join(_user_folder, "Saved Games\DCS")
def _save_file() -> str: