summaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/main.cpp1
-rw-r--r--src/app/system.cpp7
2 files changed, 4 insertions, 4 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index 7cd98b9..45871b7 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -22,6 +22,7 @@
#include "app/app.h"
#include "app/system.h"
+
#include "common/logger.h"
#include "common/misc.h"
#include "common/restext.h"
diff --git a/src/app/system.cpp b/src/app/system.cpp
index eb0321b..73614aa 100644
--- a/src/app/system.cpp
+++ b/src/app/system.cpp
@@ -15,7 +15,6 @@
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.
-// system.cpp
#include "app/system.h"
@@ -23,13 +22,13 @@
#if defined(PLATFORM_WINDOWS)
-#include "system_windows.h"
+#include "app/system_windows.h"
#elif defined(PLATFORM_LINUX)
-#include "system_linux.h"
+#include "app/system_linux.h"
#else
-#include "system_other.h"
+#include "app/system_other.h"
#endif