Fixed issue in uxn11

This commit is contained in:
neauoire 2023-08-25 10:19:43 -07:00
parent 55581f125f
commit e0ad8f1c0c
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ emu_deo(Uxn *u, Uint8 addr)
case 0x20: screen_deo(u->ram, &u->dev[d], p); break;
case 0xa0: file_deo(0, u->ram, &u->dev[d], p); break;
case 0xb0: file_deo(1, u->ram, &u->dev[d], p); break;
case 0xf0: link_deo(u, &u->dev[d], p); break;
case 0xf0: link_deo(u->ram, &u->dev[d], p); break;
}
}