fix watch value box field length for 32-bit binary watches

- closes #4044
This commit is contained in:
Morilli 2024-09-20 13:26:36 +02:00
parent b1eebd9abb
commit e092240bdd
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ namespace BizHawk.Client.EmuHawk
{
WatchSize.Byte => 8,
WatchSize.Word => 16,
WatchSize.DWord => 32,
_ => 8
};
break;