diff options
author | Javier <dev.git@javispedro.com> | 2022-04-30 21:45:45 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-30 21:45:45 +0200 |
commit | 3b240b60f05bd6fec34413791e1d215afc2bdde5 (patch) | |
tree | d7f16d7114e6f3c3ca9536074d96c5815a85f03a /int15ps2.h | |
parent | 9595ebb6348544a2945470a5f271de7b58549bcd (diff) | |
download | vbados-3b240b60f05bd6fec34413791e1d215afc2bdde5.tar.gz vbados-3b240b60f05bd6fec34413791e1d215afc2bdde5.zip |
refactor: switch debug log to a more convenient printf-like API
Diffstat (limited to 'int15ps2.h')
-rw-r--r-- | int15ps2.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -227,9 +227,7 @@ static bool ps2m_detect_wheel(void) if (device_id != PS2M_DEVICE_ID_PLAIN) { // TODO: Likely we have to accept more device IDs here - dlog_print("Unknown initial mouse device_id="); - dlog_printx(device_id); - dlog_endline(); + dprintf("Unknown initial mouse device_id=0x%x\n", device_id); return false; } |