From: Côme Chilliet Date: Wed, 14 Dec 2016 07:41:51 +0000 (+0700) Subject: Call to static method should be static X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=commitdiff_plain;h=c7cbb15bebcd754e70d6e4578a1feb22d0528dcb Call to static method should be static --- diff --git a/Source/GameTick.cpp b/Source/GameTick.cpp index 216a81c..921058b 100644 --- a/Source/GameTick.cpp +++ b/Source/GameTick.cpp @@ -6233,7 +6233,7 @@ void Game::TickOnceAfter() Account::active().winLevel(whichlevel, bonustotal - startbonustotal, leveltime); } won = 1; - Account::active().saveFile(Folders::getUserSavePath()); + Account::saveFile(Folders::getUserSavePath()); } }