diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-25 22:33:43 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-25 23:18:35 +0100 |
commit | 861b28494e8c0f8701c093f82f152c3bcdbae9fd (patch) | |
tree | 73d286db64fb405c1e451152538fee57a192646d | |
parent | a89dae832757859f05348779ca48ce4457b21838 (diff) | |
download | mana-861b28494e8c0f8701c093f82f152c3bcdbae9fd.tar.gz mana-861b28494e8c0f8701c093f82f152c3bcdbae9fd.tar.bz2 mana-861b28494e8c0f8701c093f82f152c3bcdbae9fd.tar.xz mana-861b28494e8c0f8701c093f82f152c3bcdbae9fd.zip |
Unbreak compile without OpenGL
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 247cda3d..56019976 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -58,8 +58,9 @@ static void printHelp() << _(" -L --localdata-dir : Directory to use as local data directory") << endl << _(" --screenshot-dir : Directory to store screenshots") << endl #ifdef USE_OPENGL - << _(" --no-opengl : Disable OpenGL for this session") << endl; + << _(" --no-opengl : Disable OpenGL for this session") << endl #endif + ; } static void printVersion() |