Fixed log and replay file paths to save into user home dir.
This commit is contained in:
@@ -25,7 +25,7 @@ namespace OpenRA
|
||||
{
|
||||
public static class Log
|
||||
{
|
||||
static StreamWriter writer = File.CreateText(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + Path.DirectorySeparatorChar + "openra.log.txt");
|
||||
static StreamWriter writer = File.CreateText(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + Path.DirectorySeparatorChar + "openra.log.txt");
|
||||
|
||||
static Log()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user