Misc: Warning fixes

pull/3023/head
Stenzek 1 year ago
parent e6bfcf22d9
commit c1e6616e5f

@ -91,7 +91,7 @@ void GDBConnection::onEmulationResumed()
void GDBConnection::writePacket(std::string_view packet)
{
Log_DebugPrintf("(%" PRIdPTR ") < %*s", m_descriptor, packet.length(), packet.data());
Log_DebugPrintf("(%" PRIdPTR ") < %.*s", m_descriptor, static_cast<int>(packet.length()), packet.data());
if (write(packet.data(), packet.length()) == -1)
{
Log_ErrorPrintf("(%" PRIdPTR ") Failed to write to socket: %s", m_descriptor,

@ -12,6 +12,8 @@
#include <cmath>
Log_SetChannel(CDImageDevice);
#if defined(_WIN32)
static constexpr u32 MAX_TRACK_NUMBER = 99;
static constexpr int ALL_SUBCODE_SIZE = 96;
@ -56,6 +58,8 @@ static void DeinterleaveSubcode(const u8* subcode_in, u8* subcode_out)
}
}
#endif
#if defined(_WIN32)
// The include order here is critical.
@ -540,4 +544,4 @@ bool CDImage::IsDeviceName(const char* filename)
return false;
}
#endif
#endif

Loading…
Cancel
Save