From 0590f0935c8c47865dada6e07a5c5d352b1943f1 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 4 Jan 2020 15:25:15 +1000 Subject: [PATCH] HostInterface: Fix compile error on Linux --- src/core/host_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index b2580c0a2..3123fbcc3 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -12,6 +12,8 @@ #include "spu.h" #include "system.h" #include "timers.h" +#include +#include #include Log_SetChannel(HostInterface); @@ -23,8 +25,6 @@ Log_SetChannel(HostInterface); #if defined(ANDROID) || (defined(__GNUC__) && __GNUC__ < 8) -#include - static std::string GetRelativePath(const std::string& path, const char* new_filename) { const char* last = std::strrchr(path.c_str(), '/');