From 4825b0d1e59680f15156a033560252287bf32740 Mon Sep 17 00:00:00 2001 From: water Date: Tue, 8 Sep 2020 20:14:37 -0400 Subject: [PATCH] add a slash on windows --- game/overlord/fake_iso.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/game/overlord/fake_iso.cpp b/game/overlord/fake_iso.cpp index 7668ee79ed..45603a03c6 100644 --- a/game/overlord/fake_iso.cpp +++ b/game/overlord/fake_iso.cpp @@ -198,9 +198,7 @@ static const char* get_file_path(FileRecord* fr) { assert(fr->location < fake_iso_entry_count); static char path_buffer[1024]; strcpy(path_buffer, next_dir); -#ifdef __linux__ strcat(path_buffer, "/"); -#endif strcat(path_buffer, fake_iso_entries[fr->location].file_path); return path_buffer; }