mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
Fix logical error
This commit is contained in:
@@ -2670,7 +2670,7 @@ run_dma(mystique_t *mystique)
|
||||
words_transferred++;
|
||||
}
|
||||
|
||||
if ((mystique->dma.pri_header & 0xff) != 0x15 || (mystique->dma.primaddress & DMA_ADDR_MASK) < (mystique->dma.primend & DMA_ADDR_MASK)) {
|
||||
if ((mystique->dma.pri_header & 0xff) != 0x15 && (mystique->dma.primaddress & DMA_ADDR_MASK) < (mystique->dma.primend & DMA_ADDR_MASK)) {
|
||||
uint32_t val;
|
||||
uint32_t reg_addr;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user