mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 00:32:53 +00:00
Silence -Wformat warnings in debug builds.
This commit is contained in:
parent
392b9abece
commit
fb46afd5c3
@ -301,7 +301,7 @@ int GBASockServer::Receive(u8* si_buffer)
|
|||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
if ((u8)send_data[0] == 0x00 || (u8)send_data[0] == 0xff)
|
if ((u8)send_data[0] == 0x00 || (u8)send_data[0] == 0xff)
|
||||||
{
|
{
|
||||||
WARN_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%d)",
|
WARN_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%lu)",
|
||||||
device_number,
|
device_number,
|
||||||
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
|
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
|
||||||
(u8)recv_data[3], (u8)recv_data[4],
|
(u8)recv_data[3], (u8)recv_data[4],
|
||||||
@ -309,7 +309,7 @@ int GBASockServer::Receive(u8* si_buffer)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ERROR_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%d)",
|
ERROR_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%lu)",
|
||||||
device_number,
|
device_number,
|
||||||
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
|
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
|
||||||
(u8)recv_data[3], (u8)recv_data[4],
|
(u8)recv_data[3], (u8)recv_data[4],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user