diff --git a/src/uxn11.c b/src/uxn11.c index 7c30b0b..14677fb 100644 --- a/src/uxn11.c +++ b/src/uxn11.c @@ -63,7 +63,7 @@ console_deo(Uint8 *d, Uint8 port) } static Uint8 -emu_dei(struct Uxn *u, Uint8 addr) +emu_dei(Uxn *u, Uint8 addr) { Uint8 p = addr & 0x0f, d = addr & 0xf0; switch(d) { diff --git a/src/uxncli.c b/src/uxncli.c index 66f0683..edf0104 100644 --- a/src/uxncli.c +++ b/src/uxncli.c @@ -44,7 +44,7 @@ console_deo(Uint8 *d, Uint8 port) } static Uint8 -emu_dei(struct Uxn *u, Uint8 addr) +emu_dei(Uxn *u, Uint8 addr) { Uint8 p = addr & 0x0f, d = addr & 0xf0; switch(d) {