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>2009-01-11 16:51:21 +0000
committerStijn Buys <ingar@osirion.org>2009-01-11 16:51:21 +0000
commit01a803bec48b1377d2714bce819fb2544eeeb44b (patch)
tree915a70eb23ea4f15f0a1293b2bdf5e594a10578a /src/client/client.cc
parent20e8e4c0fb1262a25c2491679da4587d264208a2 (diff)
initial loader frame
Diffstat (limited to 'src/client/client.cc')
-rw-r--r--src/client/client.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index b897480..6611bb2 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -254,6 +254,8 @@ void Client::shutdown()
void Client::notify_connect()
{
+ video::frame_loading("Connecting...");
+
view()->notify()->clear();
view()->chat()->clear();
ui::root()->hide_menu();
@@ -336,6 +338,10 @@ void Client::notify_message(const core::Message::Channel channel, const std::str
con_print << message << std::endl;
}
+void Client::notify_loader(const std::string &message) {
+ video::loader_message(message.c_str());
+}
+
//--- engine functions --------------------------------------------
void Client::func_snd_restart(std::string const &args)