From a0635ae400b9a86898e100c7b78312cce5c4dd88 Mon Sep 17 00:00:00 2001 From: MrSimbax Date: Sat, 18 Jul 2020 15:01:36 +0200 Subject: [PATCH] Fix linter issues --- src/app/app.cpp | 3 ++- src/app/modman.cpp | 4 ++-- src/ui/screen/screen_setup_mods.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/app.cpp b/src/app/app.cpp index 2bb6a805..4f73ae16 100644 --- a/src/app/app.cpp +++ b/src/app/app.cpp @@ -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(); } diff --git a/src/app/modman.cpp b/src/app/modman.cpp index e86edb5f..b67853ce 100644 --- a/src/app/modman.cpp +++ b/src/app/modman.cpp @@ -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" diff --git a/src/ui/screen/screen_setup_mods.cpp b/src/ui/screen/screen_setup_mods.cpp index 60e8a47f..6fae8151 100644 --- a/src/ui/screen/screen_setup_mods.cpp +++ b/src/ui/screen/screen_setup_mods.cpp @@ -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"