From 0184bcd0af0f276c75820209a598667ea802d946 Mon Sep 17 00:00:00 2001
From: YoshiRulz <OSSYoshiRulz+git@gmail.com>
Date: Wed, 14 Aug 2024 00:38:12 +1000
Subject: [PATCH] Restore numeric values for `PreviousType` enum

fixes 1a9e5e52f
---
 src/BizHawk.Client.Common/tools/Watch/PreviousType.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/BizHawk.Client.Common/tools/Watch/PreviousType.cs b/src/BizHawk.Client.Common/tools/Watch/PreviousType.cs
index 2c65a5a322..6f08ebd199 100644
--- a/src/BizHawk.Client.Common/tools/Watch/PreviousType.cs
+++ b/src/BizHawk.Client.Common/tools/Watch/PreviousType.cs
@@ -2,8 +2,8 @@
 {
 	public enum PreviousType
 	{
-		Original,
-		LastFrame,
-		LastChange,
+		Original = 0,
+		LastFrame = 2,
+		LastChange = 3,
 	}
 }