Skip to content

Commit

Permalink
Fix wrong logerror
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed Jul 3, 2024
1 parent 6fcb188 commit c838c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/kaneko16.c
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ WRITE8_HANDLER(wingforc_oki_bank_w)
if (data <= 2)
OKIM6295_set_bank_base(0, 0x40000 * data );
else
logerror("%s: unknown OKI bank %02X\n", activecpu_get_pc(),data);
logerror("%x: unknown OKI bank %02X\n", activecpu_get_pc(),data);
}

static ADDRESS_MAP_START( wingforc_sound_readmem, ADDRESS_SPACE_PROGRAM, 8 )
Expand Down

0 comments on commit c838c2c

Please sign in to comment.