Andreas Stieger
7fd5042e4b
gcc13 fix OBS-URL: https://build.opensuse.org/request/show/1077370 OBS-URL: https://build.opensuse.org/package/show/Emulators/ppsspp?expand=0&rev=371
61 lines
1.7 KiB
Diff
61 lines
1.7 KiB
Diff
Index: ppsspp-1.14.4/ext/vma/vk_mem_alloc.h
|
||
===================================================================
|
||
--- ppsspp-1.14.4.orig/ext/vma/vk_mem_alloc.h
|
||
+++ ppsspp-1.14.4/ext/vma/vk_mem_alloc.h
|
||
@@ -2624,6 +2624,7 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeS
|
||
#include <cstring>
|
||
#include <utility>
|
||
#include <type_traits>
|
||
+#include <cstdio>
|
||
|
||
#ifdef _MSC_VER
|
||
#include <intrin.h> // For functions like __popcnt, _BitScanForward etc.
|
||
Index: ppsspp-1.14.4/Core/Reporting.h
|
||
===================================================================
|
||
--- ppsspp-1.14.4.orig/Core/Reporting.h
|
||
+++ ppsspp-1.14.4/Core/Reporting.h
|
||
@@ -19,6 +19,7 @@
|
||
|
||
#include <string>
|
||
#include <vector>
|
||
+#include <cstdint>
|
||
|
||
#include "Common/CommonTypes.h"
|
||
#include "Common/File/Path.h"
|
||
Index: ppsspp-1.14.4/Common/Data/Format/IniFile.h
|
||
===================================================================
|
||
--- ppsspp-1.14.4.orig/Common/Data/Format/IniFile.h
|
||
+++ ppsspp-1.14.4/Common/Data/Format/IniFile.h
|
||
@@ -8,6 +8,7 @@
|
||
#include <map>
|
||
#include <string>
|
||
#include <vector>
|
||
+#include <cstdint>
|
||
|
||
#include "Common/File/Path.h"
|
||
|
||
Index: ppsspp-1.14.4/Common/Net/NetBuffer.h
|
||
===================================================================
|
||
--- ppsspp-1.14.4.orig/Common/Net/NetBuffer.h
|
||
+++ ppsspp-1.14.4/Common/Net/NetBuffer.h
|
||
@@ -1,5 +1,7 @@
|
||
#pragma once
|
||
|
||
+#include <cstdint>
|
||
+
|
||
#include "Common/Buffer.h"
|
||
|
||
namespace net {
|
||
Index: ppsspp-1.14.4/Common/GPU/OpenGL/GLFeatures.h
|
||
===================================================================
|
||
--- ppsspp-1.14.4.orig/Common/GPU/OpenGL/GLFeatures.h
|
||
+++ ppsspp-1.14.4/Common/GPU/OpenGL/GLFeatures.h
|
||
@@ -5,6 +5,7 @@
|
||
#pragma once
|
||
|
||
#include <string>
|
||
+#include <cstdint>
|
||
|
||
// TODO: Replace with thin3d's vendor enum.
|
||
enum {
|