Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
committerStijn Buys <ingar@osirion.org>2008-02-08 19:24:12 +0000
commitd3477eedc113a2c126f36f41384b8921d610906a (patch)
tree68df921c4acf03878ae244db8350e2e96936c494 /src/core
parent598dba9d17838e92f89bcd3ec78c69cc4ce50044 (diff)
updated filesystem, removed inifile, updated game and tga loader
minor cleanups
Diffstat (limited to 'src/core')
-rw-r--r--src/core/commandbuffer.cc2
-rw-r--r--src/core/cvar.cc2
-rw-r--r--src/core/func.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/commandbuffer.cc b/src/core/commandbuffer.cc
index adb3bac..eaa8504 100644
--- a/src/core/commandbuffer.cc
+++ b/src/core/commandbuffer.cc
@@ -51,7 +51,7 @@ void exec(const char *text)
return;
}
- con_print << "unknown command '" << cmdname << "'" << std::endl;
+ con_print << "Unknown command '" << cmdname << "'" << std::endl;
}
void execute()
diff --git a/src/core/cvar.cc b/src/core/cvar.cc
index ce31a49..9d1c167 100644
--- a/src/core/cvar.cc
+++ b/src/core/cvar.cc
@@ -160,7 +160,7 @@ void list()
for (it = registry.begin(); it != registry.end(); it++) {
con_print << " "<< (*it).first << " " << (*it).second->text() << std::endl;
}
- con_print << registry.size() << " registered variables." << std::endl;
+ con_print << registry.size() << " registered variables" << std::endl;
}
} // namespace cvar
diff --git a/src/core/func.cc b/src/core/func.cc
index 02e7f7d..664af4a 100644
--- a/src/core/func.cc
+++ b/src/core/func.cc
@@ -47,7 +47,7 @@ void list()
for (it = registry.begin(); it != registry.end(); it++) {
con_print << " " << (*it).first << std::endl;
}
- con_print << registry.size() << " registered functions." << std::endl;
+ con_print << registry.size() << " registered functions" << std::endl;
}
} // namespace func