From fed9c4e30e6e9888ff98e9d6515d2da67d03a4b4 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 17 Mar 2011 03:58:04 +0000 Subject: [PATCH] mutate to immutable --- BizHawk.Emulation/Interfaces/IEmulator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Interfaces/IEmulator.cs b/BizHawk.Emulation/Interfaces/IEmulator.cs index 29c8e95901..e89629b1ce 100644 --- a/BizHawk.Emulation/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation/Interfaces/IEmulator.cs @@ -57,8 +57,8 @@ namespace BizHawk this.flags = flags; this.value = value; } - public byte value; - public Flag flags; + public readonly byte value; + public readonly Flag flags; public enum Flag : byte { None = 0,