Misc: Warning fixes

This commit is contained in:
Stenzek 2023-09-30 15:44:14 +10:00
parent e6bfcf22d9
commit c1e6616e5f
2 changed files with 6 additions and 2 deletions

View file

@ -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,

View file

@ -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.