diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 67bf9cf73..788a20b98 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -27,6 +27,7 @@ #include "client.h" #include "configuration.h" #include "game.h" +#include "graphicsmanager.h" #include "guildmanager.h" #include "main.h" #include "party.h" @@ -1287,6 +1288,18 @@ impHandler0(testsdlfont) #endif } +#ifdef USE_OPENGL +impHandler2(dumpGL) +{ + std::string str = graphicsManager.getGLVersion(); + outStringNormal(tab, str, str); +} +#else +impHandler0(dumpGL) +{ +} +#endif + #ifdef DEBUG_DUMP_LEAKS1 void showRes(std::string str, ResourceManager::Resources *res); |