From 4d4887ee31c6084e4688ebbb2682c6c30c49760e Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 13 Jun 2023 22:01:50 +1000 Subject: [PATCH] Fix `WatchList.Insert` not setting dirty flag not sure if this was problematic in practice --- src/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs b/src/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs index 372901b926..eb0c1212ee 100644 --- a/src/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs +++ b/src/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs @@ -140,6 +140,7 @@ namespace BizHawk.Client.Common public void Insert(int index, Watch watch) { _watchList.Insert(index, watch); + Changes = true; } ///