diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-12 23:48:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-13 00:36:16 +0300 |
commit | be4ed51b29f77de23f6ffbf61df65554c6a394ad (patch) | |
tree | b1afa1ff261cddc1f03d512cbfc3702f7cebd61c /src/actions/actions.cpp | |
parent | ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347 (diff) | |
download | plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.gz plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.bz2 plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.xz plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.zip |
Not build unsupported render backends on nacl.
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 9e1d055ac..465200a5b 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1366,7 +1366,7 @@ impHandler(dumpTests) impHandler0(dumpOGL) { -#if defined USE_OPENGL && !defined ANDROID +#if defined(USE_OPENGL) && !defined(ANDROID) && !defined(__native_client__) NormalOpenGLGraphics::dumpSettings(); #endif return true; |