From 15e547115c819f113d4347ddb735aeb2743b1cf9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 14 Dec 2013 05:59:08 +0000 Subject: [PATCH] nitpicky thing I forgot to do in last commit, nothing important here --- BizHawk.Common/CustomCollections.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Common/CustomCollections.cs b/BizHawk.Common/CustomCollections.cs index 8af10dc2d4..c24fd34e85 100644 --- a/BizHawk.Common/CustomCollections.cs +++ b/BizHawk.Common/CustomCollections.cs @@ -41,6 +41,7 @@ namespace BizHawk.Common /// /// A dictionary that contains a name parameter, which is required /// + [Serializable] public class NamedDictionary : Dictionary { public NamedDictionary(string name) @@ -49,6 +50,8 @@ namespace BizHawk.Common } public string Name { get; private set; } + + protected NamedDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { } } ///