summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-07 02:48:12 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-08 16:46:28 +0300
commit27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f (patch)
treec2c38e1b4f308ca885dc3c3581560cfbc6833a8e /src/gui/gui.cpp
parentd4e28aa97cbce34a0053d3c02cf070ef9065439f (diff)
downloadManaVerse-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.gz
ManaVerse-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.bz2
ManaVerse-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.xz
ManaVerse-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.zip
Move resourcemanager from class to namespace.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r--src/gui/gui.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index 06afeccc6..227b0c463 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -300,7 +300,7 @@ Gui::~Gui()
void Gui::logic()
{
BLOCK_START("Gui::logic")
- resourceManager->clearScheduled();
+ ResourceManager::clearScheduled();
if (!mTop)
{
@@ -359,8 +359,7 @@ void Gui::slowLogic()
if (time > mTime10 || mTime10 - time > 10)
{
mTime10 = time + 10;
- if (resourceManager)
- resourceManager->cleanOrphans();
+ ResourceManager::cleanOrphans();
}
}