Skip to content

Commit

Permalink
Remove warnings/printfs
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed Oct 28, 2024
1 parent 14e5ae3 commit ff9ec7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/drivers/genesis.c
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ READ16_HANDLER ( genesis_68000_io_r )
case 0x0e:
case 0x0f:
default:
printf("Unhandled I/O read \n");
logerror("Unhandled I/O read \n");
return genesis_io_ram[offset];

}
Expand Down
4 changes: 2 additions & 2 deletions src/drivers/topshoot.c
Original file line number Diff line number Diff line change
Expand Up @@ -691,14 +691,14 @@ static READ16_HANDLER(sbubsm_200051_r)

static READ16_HANDLER(sbubsm_400000_r)
{
logerror("%s: sbubsm_400000_r\n");
logerror("sbubsm_400000_r\n");
return 0x5500;
}


static READ16_HANDLER(sbubsm_400002_r)
{
logerror("%s: sbubsm_400002_r\n");
logerror("sbubsm_400002_r\n");
return 0x0f00;
}

Expand Down

0 comments on commit ff9ec7b

Please # to comment.