Removed unecessary struct

This commit is contained in:
Devine Lu Linvega 2022-06-13 12:07:49 -07:00
parent 1d01e74635
commit 707efa223a
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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) {