diff --git a/src/SaveTool/SaveTool_FileWatcher.cpp b/src/SaveTool/SaveTool_FileWatcher.cpp index 7af80b7..42a3fcd 100644 --- a/src/SaveTool/SaveTool_FileWatcher.cpp +++ b/src/SaveTool/SaveTool_FileWatcher.cpp @@ -61,7 +61,8 @@ void SaveTool::handleFileAction(efsw::WatchID watch_id, } void SaveTool::fileUpdateEvent(SDL_Event& event) { - Containers::String filename{static_cast(event.user.data1), std::strlen(static_cast(event.user.data1)), nullptr}; + Containers::String filename{static_cast(event.user.data1), + std::strlen(static_cast(event.user.data1)), nullptr}; if((event.user.code & StagedUpdate) == StagedUpdate) { _massManager->refreshStagedMass(filename); diff --git a/src/SaveTool/SaveTool_MassViewer.cpp b/src/SaveTool/SaveTool_MassViewer.cpp index 8aa5c77..7ff8c5f 100644 --- a/src/SaveTool/SaveTool_MassViewer.cpp +++ b/src/SaveTool/SaveTool_MassViewer.cpp @@ -19,12 +19,11 @@ #include +#include "../FontAwesome/IconsFontAwesome5.h" #include "../Maps/Accessories.h" #define STYLENAMES_DEFINITION #include "../Maps/StyleNames.h" -#include "../FontAwesome/IconsFontAwesome5.h" - #include "SaveTool.h" void SaveTool::drawMassViewer() { diff --git a/src/SaveTool/SaveTool_drawMainMenu.cpp b/src/SaveTool/SaveTool_drawMainMenu.cpp index b588f05..26b1573 100644 --- a/src/SaveTool/SaveTool_drawMainMenu.cpp +++ b/src/SaveTool/SaveTool_drawMainMenu.cpp @@ -14,13 +14,13 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include "SaveTool.h" - #include #include "../FontAwesome/IconsFontAwesome5.h" #include "../FontAwesome/IconsFontAwesome5Brands.h" +#include "SaveTool.h" + void SaveTool::drawMainMenu() { if(ImGui::BeginMainMenuBar()) { if(ImGui::BeginMenu("Save Tool##SaveToolMenu")) {