From c3d23b49483ac6b4f99bdf7af06840a293fc1d18 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Sat, 18 Jun 2022 22:43:12 +0100 Subject: [PATCH] Extra hack to make this build on Ubuntu with old CMake --- components/vfs/filesystemarchive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/vfs/filesystemarchive.cpp b/components/vfs/filesystemarchive.cpp index 0caa4c62b9..8b74fb788a 100644 --- a/components/vfs/filesystemarchive.cpp +++ b/components/vfs/filesystemarchive.cpp @@ -34,7 +34,7 @@ namespace VFS if(std::filesystem::is_directory (*i)) continue; - std::u8string proper = i->path ().u8string (); + auto proper = i->path ().u8string (); FileSystemArchiveFile file(std::string((char*)proper.c_str(), proper.size()));