HostInterface: Fix for gcc < 8

This commit is contained in:
Connor McLaughlin 2019-12-03 01:29:26 +10:00
parent 45fc19fd05
commit efb8033d48
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@
#include "common/audio_stream.h"
#include "host_display.h"
#include "system.h"
#include <filesystem>
#include <imgui.h>
Log_SetChannel(HostInterface);
@ -16,7 +15,7 @@ Log_SetChannel(HostInterface);
#include <time.h>
#endif
#ifdef ANDROID
#if defined(ANDROID) || (defined(__GNUC__) && __GNUC__ < 8)
#include <cstring>