From 1ee3239f9e430efb3624c2c9f8751f8d4af1121e Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sat, 19 Aug 2017 22:57:48 -0400 Subject: [PATCH] - fixed compile on Clang --- src/d_iwad.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_iwad.cpp b/src/d_iwad.cpp index cc3f1179e..f8c30bf85 100644 --- a/src/d_iwad.cpp +++ b/src/d_iwad.cpp @@ -530,7 +530,7 @@ int FIWadManager::IdentifyVersion (TArray &wadfiles, const char *iwad, { for (auto &dir : mSearchPaths) { - FStringf fullpath("%s/%s", dir, custwad.GetChars()); + FStringf fullpath("%s/%s", dir.GetChars(), custwad.GetChars()); if (FileExists(fullpath)) { mFoundWads.Push({ fullpath, "", -1 });