diff options
Diffstat (limited to 'src/dedicated')
-rw-r--r-- | src/dedicated/dedicated.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dedicated/dedicated.cc b/src/dedicated/dedicated.cc index 387fcbe..8f47180 100644 --- a/src/dedicated/dedicated.cc +++ b/src/dedicated/dedicated.cc @@ -33,7 +33,7 @@ void run(int count, char **arguments) void Dedicated::init(int count, char **arguments) { - con_print << "^BInitializing server..." << std::endl; + con_print << "^BInitializing dedicated server..." << std::endl; core::Cvar::set("sv_dedicated", "1", core::Cvar::ReadOnly); @@ -68,7 +68,7 @@ void Dedicated::run() void Dedicated::shutdown() { - con_print << "^BShutting down server..." << std::endl; + con_print << "^BShutting down dedicated server..." << std::endl; float ratio = 0; if (core::Stats::network_uncompressed_bytes_sent > 0) |