Misc: Fix building with gcc14 (#11278)

This commit is contained in:
Ziemas 2024-05-21 04:25:11 +02:00 committed by GitHub
parent 4536daa5f8
commit 086bbf95dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 2 deletions

View File

@ -343,7 +343,7 @@ private:
#endif
template <u32 L>
__fi SmallStackString<L> SmallStackString<L>::from_sprintf(const char* format, ...)
SmallStackString<L> SmallStackString<L>::from_sprintf(const char* format, ...)
{
std::va_list ap;
va_start(ap, format);

View File

@ -4,6 +4,7 @@
#include "ThreadedFileReader.h"
#include "common/Threading.h"
#include <cstring>
// Make sure buffer size is bigger than the cutoff where PCSX2 emulates a seek
// If buffers are smaller than that, we can't keep up with linear reads

View File

@ -790,7 +790,7 @@ bool SDLInputSource::CloseDevice(int joystick_index)
return false;
InputManager::OnInputDeviceDisconnected(
{{.source_type = InputSourceType::SDL, .source_index = static_cast<u32>(it->player_id)}},
{InputBindingKey{.source_type = InputSourceType::SDL, .source_index = static_cast<u32>(it->player_id)}},
fmt::format("SDL-{}", it->player_id));
if (it->haptic)

View File

@ -3,6 +3,8 @@
#pragma once
#include "common/Pcsx2Types.h"
#define MADR (Index == 0 ? HW_DMA4_MADR : HW_DMA7_MADR)
#define TADR (Index == 0 ? HW_DMA4_TADR : HW_DMA7_TADR)

View File

@ -5,6 +5,7 @@
#include "GS/MultiISA.h"
#include <algorithm>
#include <array>
// --------------------------------------------------------------------------------------