diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 02:24:47 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 02:24:47 +0200 |
commit | 47f153fe76880ae3a62d82b1193c2a5a4d466836 (patch) | |
tree | 3c6a9949544f245c38a001b9c6848ba7bf731424 /src/core | |
parent | fix macro redefinition warnings on win-glfw build (diff) | |
download | re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar.gz re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar.bz2 re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar.lz re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar.xz re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.tar.zst re3-47f153fe76880ae3a62d82b1193c2a5a4d466836.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Frontend.cpp | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp index 125360ff..7ff80697 100644 --- a/src/core/Frontend.cpp +++ b/src/core/Frontend.cpp @@ -4290,29 +4290,16 @@ CMenuManager::ProcessButtonPresses(void) #ifdef USE_DEBUG_SCRIPT_LOADER if (m_nCurrScreen == MENUPAGE_START_MENU || m_nCurrScreen == MENUPAGE_NEW_GAME || m_nCurrScreen == MENUPAGE_NEW_GAME_RELOAD) { -#ifdef RW_GL3 - if (glfwGetKey(PSGLOBAL(window), GLFW_KEY_R) == GLFW_PRESS) { + if (CPad::GetPad(0)->GetChar('R')) { scriptToLoad = 1; DoSettingsBeforeStartingAGame(); return; } - if (glfwGetKey(PSGLOBAL(window), GLFW_KEY_D) == GLFW_PRESS) { + if (CPad::GetPad(0)->GetChar('D')) { scriptToLoad = 2; DoSettingsBeforeStartingAGame(); return; } -#elif defined _WIN32 - if (GetAsyncKeyState('R') & 0x8000) { - scriptToLoad = 1; - DoSettingsBeforeStartingAGame(); - return; - } - if (GetAsyncKeyState('D') & 0x8000) { - scriptToLoad = 2; - DoSettingsBeforeStartingAGame(); - return; - } -#endif } #endif |