summaryrefslogtreecommitdiff
path: root/src/maingui.cpp
diff options
context:
space:
mode:
authorcpasjuste <cpasjuste@gmail.com>2020-04-22 23:36:38 +0200
committercpasjuste <cpasjuste@gmail.com>2020-04-22 23:36:38 +0200
commit94162704b6ffe557b65d70faa4b82e082039f75e (patch)
treec960b6a357473541f38cefa8fd1b3d610aa569f1 /src/maingui.cpp
parenteeb40fb079971ece6288e5210e42a9cc3fc95790 (diff)
downloadplus-94162704b6ffe557b65d70faa4b82e082039f75e.tar.gz
plus-94162704b6ffe557b65d70faa4b82e082039f75e.tar.bz2
plus-94162704b6ffe557b65d70faa4b82e082039f75e.tar.xz
plus-94162704b6ffe557b65d70faa4b82e082039f75e.zip
switch: enable sdl2 keyboard
Diffstat (limited to 'src/maingui.cpp')
-rw-r--r--src/maingui.cpp6
1 files changed, 3 insertions, 3 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