notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b6f8a2
)
drc: fix wrong writes
author
notaz
<notasas@gmail.com>
Sun, 23 Feb 2025 02:20:09 +0000
(
04:20
+0200)
committer
notaz
<notasas@gmail.com>
Sun, 23 Feb 2025 02:20:09 +0000
(
04:20
+0200)
libpcsxcore/new_dynarec/pcsxmem.c
patch
|
blob
|
blame
|
history
diff --git
a/libpcsxcore/new_dynarec/pcsxmem.c
b/libpcsxcore/new_dynarec/pcsxmem.c
index
67a6531
..
98e2c6b
100644
(file)
--- 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__)