mirror of
https://github.com/zeldaret/tp
synced 2026-06-02 02:00:30 -04:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user