Skip to content

Commit 98a8ac2

Browse files
committed
Fix RollColumn deserialization
1 parent 2a2e52a commit 98a8ac2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/BizHawk.Client.EmuHawk/CustomControls/InputRoll/RollColumn.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#nullable enable
22

3+
using System.Text.Json.Serialization;
4+
35
namespace BizHawk.Client.EmuHawk
46
{
57
public class RollColumn
@@ -28,7 +30,7 @@ public class RollColumn
2830
/// </summary>
2931
public bool Rotatable { get; set; }
3032

31-
// [JsonConstructor]
33+
[JsonConstructor]
3234
private RollColumn()
3335
{
3436
Name = default!;

0 commit comments

Comments
 (0)