mirror of
https://github.com/holub/mame
synced 2025-05-25 23:35:26 +03:00
amiga: fixe a wrong value
This commit is contained in:
parent
c2a73f5c7f
commit
05e94cf72c
@ -259,7 +259,7 @@ int amiga_copper_execute_next(running_machine *machine, int xpos)
|
||||
word0 = (word0 >> 1) & 0xff;
|
||||
if (word0 >= min)
|
||||
{
|
||||
if (delay[word0] == 1)
|
||||
if (delay[word0] == 0)
|
||||
{
|
||||
if (LOG_COPPER)
|
||||
logerror("%02X.%02X: Write to %s = %04x\n", state->last_scanline, xpos / 2, amiga_custom_names[word0 & 0xff], word1);
|
||||
|
Loading…
Reference in New Issue
Block a user