From: notaz Date: Sun, 23 Feb 2025 02:20:09 +0000 (+0200) Subject: drc: fix wrong writes X-Git-Tag: r25~7 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f2db4a5fcc0dca278433729f7c1d783e3b3d4d8;p=pcsx_rearmed.git drc: fix wrong writes --- diff --git a/libpcsxcore/new_dynarec/pcsxmem.c b/libpcsxcore/new_dynarec/pcsxmem.c index 67a65316..98e2c6be 100644 --- a/libpcsxcore/new_dynarec/pcsxmem.c +++ b/libpcsxcore/new_dynarec/pcsxmem.c @@ -85,16 +85,12 @@ static u32 io_read_sio32() static void io_write_sio16(u32 value) { - sioWrite8((unsigned char)value); - sioWrite8((unsigned char)(value>>8)); + sioWrite8(value); } static void io_write_sio32(u32 value) { - sioWrite8((unsigned char)value); - sioWrite8((unsigned char)(value >> 8)); - sioWrite8((unsigned char)(value >> 16)); - sioWrite8((unsigned char)(value >> 24)); + sioWrite8(value); } #if !defined(DRC_DBG) && defined(__arm__)