Merge branch 'nsis'

This commit is contained in:
Matthew Bowra-Dean
2010-03-06 00:04:18 +13:00
2 changed files with 193 additions and 1 deletions

View File

@@ -19,12 +19,13 @@
#endregion
using System.IO;
using System;
namespace OpenRA
{
public static class Log
{
static StreamWriter writer = File.CreateText("log.txt");
static StreamWriter writer = File.CreateText(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + Path.DirectorySeparatorChar + "openra.log.txt");
static Log()
{