commit e0ad8f1

neauoire  ·  2023-08-25 17:19:43 +0000 UTC
parent 55581f1
Fixed issue in uxn11
1 files changed,  +1, -1
+1, -1
1@@ -69,7 +69,7 @@ emu_deo(Uxn *u, Uint8 addr)
2 	case 0x20: screen_deo(u->ram, &u->dev[d], p); break;
3 	case 0xa0: file_deo(0, u->ram, &u->dev[d], p); break;
4 	case 0xb0: file_deo(1, u->ram, &u->dev[d], p); break;
5-	case 0xf0: link_deo(u, &u->dev[d], p); break;
6+	case 0xf0: link_deo(u->ram, &u->dev[d], p); break;
7 	}
8 }
9