From 7f2db4a5fcc0dca278433729f7c1d783e3b3d4d8 Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 23 Feb 2025 04:20:09 +0200 Subject: [PATCH] drc: fix wrong writes --- libpcsxcore/new_dynarec/pcsxmem.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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__) -- 2.39.5