correctly apply path maps in engine; correctly set disasm mode in source/disasm views

This commit is contained in:
Ryan Fleury
2024-10-10 13:43:45 -07:00
parent 546c817d34
commit 578d8d64a0
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ d_possible_path_overrides_from_maps_path(Arena *arena, D_PathMapArray *path_maps
}
StringJoin join = {0};
join.sep = str8_lit("/");
String8 candidate_path = str8_list_join(arena, &candidate_parts, 0);
String8 candidate_path = str8_list_join(arena, &candidate_parts, &join);
str8_list_push(arena, &result, candidate_path);
}
}