aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-01-17 02:40:53 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-01-17 02:40:53 +0200
commit3891bc43e084b9bd1c345638dfbbffa9d71658c9 (patch)
tree1a32921c26409c735c062bfc8131b0c71728fadb /src/main.cpp
parent7068bc90af1f452359a1fcfe20fa01fc88f3d70a (diff)
downloadhax-minetest-server-3891bc43e084b9bd1c345638dfbbffa9d71658c9.tar.gz
hax-minetest-server-3891bc43e084b9bd1c345638dfbbffa9d71658c9.zip
fine-tuning of map generator and server and stuff.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index f36f17a1d..51d94aba4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -168,6 +168,8 @@ TODO: Check what goes wrong with caching map to disk (Kray)
TODO: When server sees that client is removing an inexistent block or
adding a block to an existent position, resend the MapBlock.
+TODO: Generate map from the area the client is looking at
+
Objects:
TODO: Better handling of objects and mobs
@@ -1409,10 +1411,11 @@ int main(int argc, char *argv[])
video::E_DRIVER_TYPE driverType;
#ifdef _WIN32
- //driverType = video::EDT_DIRECT3D9; // Doesn't seem to work
+ //driverType = video::EDT_DIRECT3D9;
driverType = video::EDT_OPENGL;
#else
driverType = video::EDT_OPENGL;
+ //driverType = video::EDT_BURNINGSVIDEO;
#endif
// create device and exit if creation failed