diff options
author | Duane Bailey <nayryeliab@gmail.com> | 2005-10-16 17:13:04 +0000 |
---|---|---|
committer | Duane Bailey <nayryeliab@gmail.com> | 2005-10-16 17:13:04 +0000 |
commit | 837072a1482934a572853f5c41974e4ac90da1ca (patch) | |
tree | 7cffa551de84c21c36ca2777ec6ed6745870cdf1 /src/main.cpp | |
parent | a8a422352df3441d3cf0da967dc94b42c2c21239 (diff) | |
download | mana-837072a1482934a572853f5c41974e4ac90da1ca.tar.gz mana-837072a1482934a572853f5c41974e4ac90da1ca.tar.bz2 mana-837072a1482934a572853f5c41974e4ac90da1ca.tar.xz mana-837072a1482934a572853f5c41974e4ac90da1ca.zip |
gl is default for win/apple/USE_OPENGL, needs to restart for fs
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6ce9dd3a..90a0aac3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -185,7 +185,11 @@ void init_engine() config.setValue("host", "animesites.de"); config.setValue("port", 6901); config.setValue("hwaccel", 0); + #if defined __APPLE__ || defined WIN32 || defined USE_OPENGL + config.setValue("opengl", 1); + #else config.setValue("opengl", 0); + #endif config.setValue("screen", 0); config.setValue("sound", 1); config.setValue("guialpha", 0.8f); |