Merge pull request #355 from gamemasterplc/main

Make GXWGFifo volatile
This commit is contained in:
Liam Coleman 2024-06-17 16:36:50 -05:00 committed by GitHub
commit 8b0059eb77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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