From e876adbcf161f79cb5ca9505de3124acc9ff921d Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 22 Jul 2016 21:24:45 +0100 Subject: [PATCH] Fix header include order on Linux The old order caused compilation errors when compiling with GCC. --- src/gui/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/main.cpp b/src/gui/main.cpp index 5dbb6899..bb6d0bbf 100644 --- a/src/gui/main.cpp +++ b/src/gui/main.cpp @@ -31,6 +31,9 @@ #include #include +#include "backend/app/loot_paths.h" +#include "gui/loot_app.h" + #ifdef _WIN32 #include #include @@ -39,9 +42,6 @@ #include #endif -#include "backend/app/loot_paths.h" -#include "gui/loot_app.h" - CefSettings GetCefSettings() { CefSettings cef_settings;