summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-19 22:44:08 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-19 22:44:08 +0200
commit9fd91e6250d2b52b92923bd801a826ce3f9ec45e (patch)
tree60272cfddde19d8baca635972df11ba780460f06 /src/core
parentMerge remote-tracking branch 'origin/miami' into miami (diff)
parentupdate librw (diff)
downloadre3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar.gz
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar.bz2
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar.lz
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar.xz
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.tar.zst
re3-9fd91e6250d2b52b92923bd801a826ce3f9ec45e.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Frontend.h6
-rw-r--r--src/core/Pad.cpp4
2 files changed, 10 insertions, 0 deletions
diff --git a/src/core/Frontend.h b/src/core/Frontend.h
index 8b6fee87..858ad1f3 100644
--- a/src/core/Frontend.h
+++ b/src/core/Frontend.h
@@ -637,6 +637,12 @@ public:
static int8 m_DisplayIslandLoading;
static int8 m_PrefsIslandLoading;
+
+ #define ISLAND_LOADING_IS(p) if (CMenuManager::m_PrefsIslandLoading == CMenuManager::ISLAND_LOADING_##p)
+ #define ISLAND_LOADING_ISNT(p) if (CMenuManager::m_PrefsIslandLoading != CMenuManager::ISLAND_LOADING_##p)
+#else
+ #define ISLAND_LOADING_IS(p)
+ #define ISLAND_LOADING_ISNT(p)
#endif
void Initialise();
diff --git a/src/core/Pad.cpp b/src/core/Pad.cpp
index eb2b1e31..42b26c63 100644
--- a/src/core/Pad.cpp
+++ b/src/core/Pad.cpp
@@ -11,7 +11,11 @@
#include "platform.h"
#ifdef XINPUT
#include <xinput.h>
+#if !defined(PSAPI_VERSION) || (PSAPI_VERSION > 1)
#pragma comment( lib, "Xinput9_1_0.lib" )
+#else
+#pragma comment( lib, "Xinput.lib" )
+#endif
#endif
#include "Pad.h"