From 4a983fb54e35159b472b1ca439c890802342d388 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 20 Mar 2010 13:19:44 +1300 Subject: [PATCH] Let the game actually *run* --- OpenRA.FileFormats/Verifier.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/OpenRA.FileFormats/Verifier.cs b/OpenRA.FileFormats/Verifier.cs index 673a066abc..417b28b27b 100644 --- a/OpenRA.FileFormats/Verifier.cs +++ b/OpenRA.FileFormats/Verifier.cs @@ -1,4 +1,4 @@ -#region Copyright & License Information +#region Copyright & License Information /* * Copyright 2007,2009,2010 Chris Forbes, Robert Pepperell, Matthew Bowra-Dean, Paul Chote, Alli Witheford. * This file is part of OpenRA. @@ -43,6 +43,10 @@ namespace OpenRA.FileFormats "System.NotSupportedException:.ctor", "System.Threading.Thread:get_CurrentThread", "System.Threading.Thread:get_ManagedThreadId", + + // Fixes to let the game run: should be checked by someone knowledgeable + "System.Threading.Interlocked:CompareExchange", + "System.Drawing.Color:*", }; public static bool IsSafe(string filename, List failures)