forgot part of the config serializer fix checkin

This commit is contained in:
zeromus 2012-06-15 19:55:11 +00:00
parent e1152799b4
commit 21b1bde8af
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ namespace BizHawk.MultiClient
using (var reader = file.OpenText())
{
var s = new JsonSerializer();
s.SuppressMissingMemberException = true;
var r = new JsonReader(reader);
config = (T)s.Deserialize(r, typeof(T));
}