Skip to content

Commit bc4e550

Browse files
committed
Fix a small inaccuracy in dmaFail, unlikely to have affected anything
1 parent 847ca91 commit bc4e550

File tree

1 file changed

+1
-1
lines changed
  • Application/Dopamine/Exploits/dmaFail

1 file changed

+1
-1
lines changed

Application/Dopamine/Exploits/dmaFail/dmaFail.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ void dma_ctrl_2(bool flag)
177177
}
178178
}
179179
else {
180-
if ((value & 0x1000000000000000) == 0) {
180+
if ((value & 0x1000000000000000) != 0) {
181181
value &= ~0x1000000000000000;
182182
physwrite64_mapped(ctrl, value);
183183
}

0 commit comments

Comments
 (0)