Skip to content

Commit

Permalink
Disable mesh cache by default
Browse files Browse the repository at this point in the history
  • Loading branch information
est31 committed Jul 1, 2015
1 parent c0dafa1 commit b2160bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -263,7 +263,7 @@
# Lower is darker, Higher is lighter. The valid range of values for this
# setting is 0.25 to 4.0 inclusive. If the value is out of range it will be
# set to the nearest valid value.
#enable_mesh_cache = true
#enable_mesh_cache = false
# Enables caching of facedir rotated meshes

#enable_minimap = true
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -175,7 +175,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("enable_shaders", "true");
settings->setDefault("repeat_rightclick_time", "0.25");
settings->setDefault("enable_particles", "true");
settings->setDefault("enable_mesh_cache", "true");
settings->setDefault("enable_mesh_cache", "false");

settings->setDefault("enable_minimap", "true");
settings->setDefault("minimap_shape_round", "true");
Expand Down

0 comments on commit b2160bc

Please sign in to comment.