From 94f2d99142946aca6481ee032ffc933ca6f0763d Mon Sep 17 00:00:00 2001 From: Juozas Date: Mon, 3 Dec 2018 20:31:20 +0200 Subject: [PATCH] Fix Android build errors (caused by 5f1cd55) After commit 5f1cd55 touchscreengui.* files were pointing to old file locations --- src/gui/touchscreengui.cpp | 4 ++-- src/gui/touchscreengui.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/touchscreengui.cpp b/src/gui/touchscreengui.cpp index a2d62c8b7..94e331f72 100644 --- a/src/gui/touchscreengui.cpp +++ b/src/gui/touchscreengui.cpp @@ -22,12 +22,12 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes.h" #include "irr_v2d.h" #include "log.h" -#include "keycode.h" +#include "client/keycode.h" #include "settings.h" #include "gettime.h" #include "util/numeric.h" #include "porting.h" -#include "guiscalingfilter.h" +#include "client/guiscalingfilter.h" #include #include diff --git a/src/gui/touchscreengui.h b/src/gui/touchscreengui.h index 5102f188b..f60051c87 100644 --- a/src/gui/touchscreengui.h +++ b/src/gui/touchscreengui.h @@ -27,7 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include "client/tile.h" -#include "game.h" +#include "client/game.h" using namespace irr; using namespace irr::core;