next round of standard compiler fixes (#2969)

* next round of standard compiler fixes

* Fix weak function order issue

* fix missmatch with ShieldD version
This commit is contained in:
kipcode66
2025-12-21 20:48:09 -05:00
committed by GitHub
parent b4f931f75f
commit 4045f16667
21 changed files with 74 additions and 44 deletions
+2 -1
View File
@@ -9,6 +9,7 @@
#include "JSystem/JAudio2/JASProbe.h"
#include "JSystem/JKernel/JKRSolidHeap.h"
#include "dolphin/dsp.h"
#include "stdint.h"
JASAudioThread::JASAudioThread(int stackSize, int msgCount, u32 threadPriority)
:
@@ -60,7 +61,7 @@ void* JASAudioThread::run() {
while (true) {
OSMessage msg = waitMessageBlock();
switch ((int)msg) {
switch ((intptr_t)msg) {
case AUDIOMSG_DMA:
if (sbPauseFlag) {
JASDriver::stopDMA();