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:
f707f14
)
gpulib: avoid unaligned read
author
notaz
<notasas@gmail.com>
Mon, 10 Feb 2025 23:49:29 +0000
(
01:49
+0200)
committer
notaz
<notasas@gmail.com>
Mon, 10 Feb 2025 23:49:29 +0000
(
01:49
+0200)
we still support arm9 and such
plugins/gpulib/gpu.c
patch
|
blob
|
blame
|
history
diff --git
a/plugins/gpulib/gpu.c
b/plugins/gpulib/gpu.c
index
3318549
..
83ec764
100644
(file)
--- a/
plugins/gpulib/gpu.c
+++ b/
plugins/gpulib/gpu.c
@@
-505,9
+505,10
@@
static noinline void start_vram_transfer(struct psx_gpu *gpu, uint32_t pos_word,
renderer_flush_queues();
if (is_read) {
+ const uint16_t *mem = VRAM_MEM_XY(gpu->vram, gpu->dma.x, gpu->dma.y);
gpu->status |= PSX_GPU_STATUS_IMG;
// XXX: wrong for width 1
- gpu->gp0 = LE
32TOH(*(uint32_t *) VRAM_MEM_XY(gpu->vram, gpu->dma.x, gpu->dma.y)
);
+ gpu->gp0 = LE
16TOH(mem[0]) | ((uint32_t)LE16TOH(mem[1]) << 16
);
gpu->state.last_vram_read_frame = *gpu->state.frame_count;
}