diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 22:28:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 22:28:51 +0300 |
commit | eeb6f3b831e707b413a10de53c7f72139e73f963 (patch) | |
tree | 1a6eb21cf6ddd74111cda9f94129846ecea7b083 /src/gui/gui.cpp | |
parent | e29c975369db3c0999de16d6a4fb529e4490d24e (diff) | |
download | plus-eeb6f3b831e707b413a10de53c7f72139e73f963.tar.gz plus-eeb6f3b831e707b413a10de53c7f72139e73f963.tar.bz2 plus-eeb6f3b831e707b413a10de53c7f72139e73f963.tar.xz plus-eeb6f3b831e707b413a10de53c7f72139e73f963.zip |
Remove default parameters from resourcemanager.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 3fab73d0a..f87b8796f 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -360,7 +360,7 @@ void Gui::slowLogic() if (time > mTime10 || mTime10 - time > 10) { mTime10 = time + 10; - ResourceManager::cleanOrphans(); + ResourceManager::cleanOrphans(false); guiInput->simulateMouseMove(); } } |