|
From: Lasse Kärkkäi. <tr...@us...> - 2011-02-24 02:48:04
|
Author: Lasse Kärkkäinen <tronic+ndrm at trn.iki.fi> Date: Thu Feb 24 02:34:26 2011 +0100 Fix logo display during loading (again). --- game/screenmanager.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/game/screenmanager.cc b/game/screenmanager.cc index 2c60c2a..460b2b0 100644 --- a/game/screenmanager.cc +++ b/game/screenmanager.cc @@ -50,10 +50,10 @@ void ScreenManager::drawScreen() { void ScreenManager::loading(std::string const& message, float progress) { - drawLogo(); // TODO: Create a better one, this is quite ugly flashMessage(message + " " + boost::lexical_cast<std::string>(int(round(progress*100))) + "%", 0.0f, 1.0f, 1.0f); m_window.blank(); + drawLogo(); drawNotifications(); const int maxi = 20; const float x = 0.3; |