HDMA: Fixed HDMA only working until any channel was disabled/done

This commit is contained in:
Sour 2019-02-22 22:15:45 -05:00
parent a009e899a2
commit c809f096f5

View file

@ -126,7 +126,7 @@ void DmaController::ProcessHdmaChannels()
for(int i = 0; i < 8; i++) {
DmaChannelConfig &ch = _channel[i];
if((_hdmaChannels & (1 << i)) == 0 || ch.HdmaFinished) {
return;
continue;
}
if(needOverhead) {