Fix `WatchList.Insert` not setting dirty flag

not sure if this was problematic in practice
This commit is contained in:
YoshiRulz 2023-06-13 22:01:50 +10:00
parent 13dd04a026
commit 4d4887ee31
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ namespace BizHawk.Client.Common
public void Insert(int index, Watch watch)
{
_watchList.Insert(index, watch);
Changes = true;
}
/// <summary>