diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/render.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/render/render.cc b/src/render/render.cc index 384280c..5a6c6bc 100644 --- a/src/render/render.cc +++ b/src/render/render.cc @@ -80,7 +80,7 @@ void init(int width, int height) r_normals->set_info("[bool] render face normals"); r_normalize = core::Cvar::get("r_normalize", "0", core::Cvar::Archive); - r_normalize->set_info("[bool] use GL_NORMALIZE instead of GL_RESCALE_NORMAL (recommended off)"); + r_normalize->set_info("[bool] use GL_NORMALIZE instead of GL_RESCALE_NORMAL (recommended off)"); r_grid = core::Cvar::get("r_grid", "0", core::Cvar::Archive); r_grid->set_info("[bool] render the space grid"); @@ -92,7 +92,7 @@ void init(int width, int height) r_bbox->set_info("[bool] render model bounding box"); r_sky = core::Cvar::get("r_sky", "1", core::Cvar::Archive); - r_sky->set_info("[bool] render the sky globe"); + r_sky->set_info("[bool] render the sky"); r_particles = core::Cvar::get("r_particles", "1", core::Cvar::Archive); r_particles->set_info("[bool] render particles"); @@ -141,7 +141,6 @@ void init(int width, int height) func = core::Func::add("list_materials", func_list_materials); func->set_info("list registered materials"); - func = core::Func::add("list_particles", func_list_particles); func->set_info("list registered particle scripts"); |