diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-29 11:41:26 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-29 11:41:26 -0400 |
commit | f9d8678db43c533cf08c84ae4ebc85738ff113ea (patch) | |
tree | b8b2e4eb19d0a0eec5af0ac0ec73b3c90ebdbebf /src | |
parent | 4b759da71413f3a2b63cb1c220fba4da490bf3d2 (diff) |
Additional fixes
Rearrange gbafix to not modify file in the event of failure
Fix bug where Dma3Manager may get stuck when compiled with gcc-9.1.0
Diffstat (limited to 'src')
-rw-r--r-- | src/dma3_manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dma3_manager.c b/src/dma3_manager.c index f11bf33dd..43744883f 100644 --- a/src/dma3_manager.c +++ b/src/dma3_manager.c @@ -17,7 +17,7 @@ BSS_DATA struct u32 value; } gDma3Requests[MAX_DMA_REQUESTS]; -static bool8 gDma3ManagerLocked; +static volatile bool8 gDma3ManagerLocked; static u8 gDma3RequestCursor; void ClearDma3Requests(void) |