From 3249d8165415a78a617be7edd60a69df60e84e6c Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 18 Jun 2017 12:17:48 -0700 Subject: [PATCH] GE Debugger: Buildfix for BSD. `tm` was not defined, as per jbeich. --- Core/FileSystems/BlobFileSystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/FileSystems/BlobFileSystem.cpp b/Core/FileSystems/BlobFileSystem.cpp index 059e79199f..b72b69ff30 100644 --- a/Core/FileSystems/BlobFileSystem.cpp +++ b/Core/FileSystems/BlobFileSystem.cpp @@ -15,6 +15,7 @@ // Official git repository and contact information can be found at // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/. +#include #include "Core/FileSystems/BlobFileSystem.h" BlobFileSystem::BlobFileSystem(IHandleAllocator *hAlloc, FileLoader *fileLoader, std::string alias)