mirror of
https://github.com/holub/mame
synced 2025-04-22 00:11:58 +03:00
nec/v25sfr.cpp: Fix BRG logging message
This commit is contained in:
parent
a58bc25fbc
commit
4ac86c7fa0
@ -283,7 +283,7 @@ uint8_t v25_common_device::brg0_r()
|
||||
|
||||
void v25_common_device::brg0_w(uint8_t d)
|
||||
{
|
||||
logerror("%06x: BRG0 divider set to %d\n", PC(), d);
|
||||
logerror("%06x: BRG0 divider set to %u\n", PC(), d);
|
||||
m_brg[0] = d;
|
||||
}
|
||||
|
||||
@ -379,7 +379,7 @@ uint8_t v25_common_device::brg1_r()
|
||||
|
||||
void v25_common_device::brg1_w(uint8_t d)
|
||||
{
|
||||
logerror("%06x: BRG1 divider set to %d\n", PC(), d);
|
||||
logerror("%06x: BRG1 divider set to %u\n", PC(), d);
|
||||
m_brg[1] = d;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user