summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorStefan Dombrowski <stefan@uni-bonn.de>2010-09-12 00:07:55 +0200
committerStefan Dombrowski <stefan@uni-bonn.de>2010-09-12 00:07:55 +0200
commit60f16fea6c08f419bfd3d852ec3696bedfe09196 (patch)
treecd530a3d41d4b6bab83e0b94c7fee6db7c5a939f /src/client.cpp
parent81dd53a536f3f76636b058250750a661911a94ea (diff)
downloadmana-client-60f16fea6c08f419bfd3d852ec3696bedfe09196.tar.gz
mana-client-60f16fea6c08f419bfd3d852ec3696bedfe09196.tar.bz2
mana-client-60f16fea6c08f419bfd3d852ec3696bedfe09196.tar.xz
mana-client-60f16fea6c08f419bfd3d852ec3696bedfe09196.zip
Deactivating OpenGL by default on Windows
For Linux OpenGL was already deactivated. For OSX it is still by default switched on. Reviewed-by: Jaxad0127
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 482bb9dc..8def205b 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1090,7 +1090,7 @@ void Client::initConfiguration()
{
// Fill configuration with defaults
config.setValue("hwaccel", false);
-#if (defined __APPLE__ || defined WIN32) && defined USE_OPENGL
+#if defined __APPLE__ && defined USE_OPENGL
config.setValue("opengl", true);
#else
config.setValue("opengl", false);