summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/maingui.cpp6
-rw-r--r--src/progs/manaplus/actions/actions.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/maingui.cpp b/src/maingui.cpp
index 054db6b05..be25ded1d 100644
--- a/src/maingui.cpp
+++ b/src/maingui.cpp
@@ -97,7 +97,7 @@ PRAGMA48(GCC diagnostic pop)
#include "debug.h"
-#ifdef __SWITCH__
+#if defined(__SWITCH__) && !defined(NDEBUG)
extern "C" {
#include <switch/runtime/devices/socket.h>
#include <switch/runtime/nxlink.h>
@@ -130,7 +130,7 @@ int main(int argc, char *argv[])
int mainGui(int argc, char *argv[])
#endif // ANDROID
{
-#ifdef __SWITCH__
+#if defined(__SWITCH__) && !defined(NDEBUG)
initNxLink();
#endif
#if defined(__MINGW32__)
@@ -185,7 +185,7 @@ int mainGui(int argc, char *argv[])
IMG_Quit();
#endif // SDL_IMAGE_VERSION_ATLEAST(1, 2, 11)
-#ifdef __SWITCH__
+#if defined(__SWITCH__) && !defined(NDEBUG)
deinitNxLink();
#endif
diff --git a/src/progs/manaplus/actions/actions.cpp b/src/progs/manaplus/actions/actions.cpp
index 4606137f3..3a48e5a33 100644
--- a/src/progs/manaplus/actions/actions.cpp
+++ b/src/progs/manaplus/actions/actions.cpp
@@ -995,7 +995,7 @@ impHandler0(stopSit)
impHandler0(showKeyboard)
{
-#ifdef ANDROID
+#if defined(ANDROID) || defined(__SWITCH__)
#ifdef USE_SDL2
if (SDL_GetEventState(SDL_TEXTINPUT) == SDL_ENABLE)
SDL_StopTextInput();