Fix linter issues

pyro-refactor
MrSimbax 2020-07-18 15:01:36 +02:00
parent dc64b95406
commit a0635ae400
3 changed files with 5 additions and 4 deletions

View File

@ -1557,7 +1557,8 @@ void CApplication::StartLoadingMusic()
m_systemUtils->GetCurrentTimeStamp(musicLoadEnd);
float musicLoadTime = m_systemUtils->TimeStampDiff(musicLoadStart, musicLoadEnd, STU_MSEC);
GetLogger()->Debug("Sound loading took %.2f ms\n", musicLoadTime);
}, "Sound loading thread");
},
"Sound loading thread");
musicLoadThread.Start();
}

View File

@ -17,7 +17,7 @@
* along with this program. If not, see http://gnu.org/licenses
*/
#include "modman.h"
#include "app/modman.h"
//TODO: clean up includes
#include "common/config.h"
@ -25,8 +25,8 @@
#include "app/app.h"
#include "app/pathman.h"
#include "common/restext.h"
#include "common/logger.h"
#include "common/restext.h"
#include "common/settings.h"
#include "common/stringutils.h"

View File

@ -24,8 +24,8 @@
#include "app/app.h"
#include "app/modman.h"
#include "common/restext.h"
#include "common/logger.h"
#include "common/restext.h"
#include "common/settings.h"
#include "common/stringutils.h"