gpulib: avoid unaligned read
authornotaz <notasas@gmail.com>
Mon, 10 Feb 2025 23:49:29 +0000 (01:49 +0200)
committernotaz <notasas@gmail.com>
Mon, 10 Feb 2025 23:49:29 +0000 (01:49 +0200)
we still support arm9 and such

plugins/gpulib/gpu.c

index 3318549..83ec764 100644 (file)
@@ -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 = LE32TOH(*(uint32_t *) VRAM_MEM_XY(gpu->vram, gpu->dma.x, gpu->dma.y));
+    gpu->gp0 = LE16TOH(mem[0]) | ((uint32_t)LE16TOH(mem[1]) << 16);
     gpu->state.last_vram_read_frame = *gpu->state.frame_count;
   }