From 3a26bbf84fce2e3d71a325f7b521c259f24eb2a1 Mon Sep 17 00:00:00 2001 From: doyle Date: Mon, 16 Oct 2023 15:02:18 +1100 Subject: [PATCH] build: Fix textures not being copied over correctly --- feely_pona_build.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/feely_pona_build.cpp b/feely_pona_build.cpp index 7485505..57a16f9 100644 --- a/feely_pona_build.cpp +++ b/feely_pona_build.cpp @@ -136,9 +136,9 @@ int main(int argc, char const **argv) robocopy_timings[0] = Dqn_OS_PerfCounterNow(); DQN_DEFER { robocopy_timings[1] = Dqn_OS_PerfCounterNow(); }; Dqn_String8 robocopy_cmd[] = { - Dqn_String8_InitF(scratch.allocator, "robocopy /NJH /NJS /NDL /NP %.*s\\Data %.*s\\Data\\Textures atlas.*", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), - Dqn_String8_InitF(scratch.allocator, "robocopy /MIR /NJH /NJS /NDL /NP %.*s\\Data\\Fonts %.*s\\Data\\Fonts", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), - Dqn_String8_InitF(scratch.allocator, "robocopy /MIR /NJH /NJS /NDL /NP %.*s\\Data\\Audio %.*s\\Data\\Audio", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), + Dqn_String8_InitF(scratch.allocator, "robocopy /NJH /NJS /NDL /NP %.*s\\Data\\Textures %.*s\\Data\\Textures atlas.*", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), + Dqn_String8_InitF(scratch.allocator, "robocopy /MIR /NJH /NJS /NDL /NP %.*s\\Data\\Fonts %.*s\\Data\\Fonts", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), + Dqn_String8_InitF(scratch.allocator, "robocopy /MIR /NJH /NJS /NDL /NP %.*s\\Data\\Audio %.*s\\Data\\Audio", DQN_STRING_FMT(exe_dir), DQN_STRING_FMT(build_dir)), }; for (Dqn_String8 cmd : robocopy_cmd) {