Restore numeric values for `PreviousType` enum

fixes 1a9e5e52f
This commit is contained in:
YoshiRulz 2024-08-14 00:38:12 +10:00
parent ab7f379e74
commit 0184bcd0af
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
{
public enum PreviousType
{
Original,
LastFrame,
LastChange,
Original = 0,
LastFrame = 2,
LastChange = 3,
}
}