FileSystems: add missing header

Core/FileSystems/FileSystem.h:102:5: error: field has incomplete type 'tm'
        tm atime{};
           ^
/usr/include/wchar.h:111:8: note: forward declaration of 'tm'
struct tm;
       ^
This commit is contained in:
Jan Beich 2020-12-27 05:13:34 +00:00
parent 633ba355ee
commit 7c5b6fc320

View file

@ -20,6 +20,7 @@
#include <vector>
#include <string>
#include <cstring>
#include <ctime>
#include "Common.h"
#include "Core/HLE/sceKernel.h"