Changed .NET projects to target x86
Compiling the .NET projects as x64 on 64bit machines was causing problems with the unmanaged code.
This commit is contained in:
@@ -42,7 +42,7 @@ namespace OpenRa.TechTree
|
||||
IEnumerable<Tuple<string, string, bool>> Lines(string filename, bool param)
|
||||
{
|
||||
Regex pattern = new Regex(@"^(\w+),([\w ]+)$");
|
||||
foreach (string s in File.ReadAllLines("../../../" + filename))
|
||||
foreach (string s in File.ReadAllLines("../../../../" + filename))
|
||||
{
|
||||
Match m = pattern.Match(s);
|
||||
if (m == null || !m.Success)
|
||||
|
||||
Reference in New Issue
Block a user