Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/video.cc')
-rw-r--r--src/client/video.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/video.cc b/src/client/video.cc
index 72b72da..84bbe52 100644
--- a/src/client/video.cc
+++ b/src/client/video.cc
@@ -36,6 +36,7 @@ core::Cvar *draw_ui = 0;
core::Cvar *draw_stats = 0;
core::Cvar *draw_devinfo = 0;
core::Cvar *draw_keypress = 0;
+core::Cvar *draw_clock = 0;
namespace video
{
@@ -86,6 +87,9 @@ bool init()
draw_keypress = core::Cvar::get("draw_keypress", "0", core::Cvar::Archive);
draw_keypress->set_info("[bool] draw keypress key names");
+
+ draw_clock = core::Cvar::get("draw_clock", "0", core::Cvar::Archive);
+ draw_clock->set_info("[int] draw clock (0=Off, 1=24hr, 2=12hr)");
draw_ui = core::Cvar::get("draw_ui", "1", core::Cvar::Archive);
draw_ui->set_info("[bool] draw the user interface");