Attempt to make the data call UINT8

This commit is contained in:
arcadez2003 2024-11-01 14:09:58 +00:00 committed by GitHub
parent 76db9b75c3
commit 4c2e4460bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6252,7 +6252,8 @@ int prot_cmd;
WRITE_HANDLER( sonic3mb_prot_w )
{
prot_cmd = data;
/* prot_cmd = data; */
prot_cmd = (UINT8)data;
}
READ16_HANDLER( sonic3mb_prot_r )