diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 02:37:14 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-07-08 02:37:14 +0200 |
commit | 72f67809059c732588ac29eedf8a10f9156b27b4 (patch) | |
tree | b71ff78f38f6bbea9c032fdbd9e799616524b5a7 /src/control/Script.cpp | |
parent | fix macro redefinition warnings on win-glfw build (diff) | |
download | re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar.gz re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar.bz2 re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar.lz re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar.xz re3-72f67809059c732588ac29eedf8a10f9156b27b4.tar.zst re3-72f67809059c732588ac29eedf8a10f9156b27b4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Script.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp index 1eee1c9e..76ab9471 100644 --- a/src/control/Script.cpp +++ b/src/control/Script.cpp @@ -2208,21 +2208,16 @@ void CRunningScript::Init() int scriptToLoad = 0; const char *scriptfile = "main.scm"; -#ifdef _WIN32 -extern "C" __declspec(dllimport) short __stdcall GetAsyncKeyState(int); -#endif - int open_script() { - // glfwGetKey doesn't work because of CGame::Initialise is blocking -#ifdef _WIN32 - if (GetAsyncKeyState('G') & 0x8000) + // glfwGetKey doesn't work because of CGame::Initialise is blocking + CPad::UpdatePads(); + if (CPad::GetPad(0)->GetChar('G')) scriptToLoad = 0; - if (GetAsyncKeyState('R') & 0x8000) + if (CPad::GetPad(0)->GetChar('R')) scriptToLoad = 1; - if (GetAsyncKeyState('D') & 0x8000) + if (CPad::GetPad(0)->GetChar('D')) scriptToLoad = 2; -#endif switch (scriptToLoad) { case 0: scriptfile = "main.scm"; break; case 1: scriptfile = "freeroam_miami.scm"; break; |