mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
mpu4vid.cpp: Fix bad logging format string
This commit is contained in:
parent
8fb5044e87
commit
5903b7d269
@ -2488,7 +2488,7 @@ void mpu4vid_state::init_bwbhack()
|
||||
|
||||
logerror("option byte is %02x\n", option);
|
||||
logerror("bit 0: Datapak = %d\n", (option >> 0) & 1);
|
||||
logerror("bit 1: Fixed % = %d\n", (option >> 1) & 1);
|
||||
logerror("bit 1: Fixed %% = %d\n", (option >> 1) & 1);
|
||||
logerror("bit 2: Arcade = %d\n", (option >> 2) & 1);
|
||||
logerror("bit 3: Switchable = %d\n", (option >> 3) & 1);
|
||||
logerror("bit 4: Irish = %d\n", (option >> 4) & 1);
|
||||
|
Loading…
Reference in New Issue
Block a user