Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-11-16 21:49:18 +0000
committerStijn Buys <ingar@osirion.org>2010-11-16 21:49:18 +0000
commitb58da165c4ae841859ee7c600ec27f7207181a0e (patch)
tree2bdc6770dacfcfb6fb8443b41f79c5008bbd8fb2 /src/render/state.cc
parent2daac503a3a2f149f883db7c30199ebbb1f00c7f (diff)
renamed screenshotformat and screenshotquality cvars,
cleaned up mipmap and vbo console messages
Diffstat (limited to 'src/render/state.cc')
-rw-r--r--src/render/state.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/state.cc b/src/render/state.cc
index df2af75..293e464 100644
--- a/src/render/state.cc
+++ b/src/render/state.cc
@@ -50,11 +50,11 @@ void State::init(int width, int height)
con_warn << "Could not determine OpenGL version!" << std::endl;
}
- con_print << " Hardware generate mipmaps ";
+ con_print << " hardware generated mipmaps ";
if (render_has_generate_mipmaps)
- con_print << "enabled" << std::endl;
+ con_print << "available" << std::endl;
else
- con_print << "disabled" << std::endl;
+ con_print << "not available" << std::endl;
// initialize gl functions
render_has_vbo = true;
@@ -82,7 +82,7 @@ void State::init(int width, int height)
render_has_vbo = false;
}
- con_print << " Vertex bufer objects ";
+ con_print << " vertex bufer objects ";
if (render_has_vbo)
con_print << "enabled" << std::endl;
else