From dffe83995d9ffe3859fffb20a7ec849eb3ebd8bc Mon Sep 17 00:00:00 2001 From: gamemasterplc Date: Mon, 17 Jun 2024 16:29:17 -0500 Subject: [PATCH] Make GXWGFifo volatile --- include/dolphin/gx/GXVert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dolphin/gx/GXVert.h b/include/dolphin/gx/GXVert.h index 61d4dabf..34745aaa 100644 --- a/include/dolphin/gx/GXVert.h +++ b/include/dolphin/gx/GXVert.h @@ -23,7 +23,7 @@ typedef union { } PPCWGPipe; #ifdef __MWERKS__ -/*volatile*/ PPCWGPipe GXWGFifo : GXFIFO_ADDR; +volatile PPCWGPipe GXWGFifo : GXFIFO_ADDR; #else #define GXWGFifo (*(volatile PPCWGPipe*)GXFIFO_ADDR) #endif