correctly transform saved relative project paths to absolute project paths on config deserialization

This commit is contained in:
Ryan Fleury
2024-06-13 15:52:11 -07:00
parent fb6689a74d
commit 3c39a88abf
+1 -1
View File
@@ -13712,7 +13712,7 @@ df_gfx_begin_frame(Arena *arena, DF_CmdList *cmds)
DF_CfgNode *project_cfg_node = df_cfg_node_child_from_string(op, str8_lit("project"), StringMatchFlag_CaseInsensitive);
if(project_cfg_node != &df_g_nil_cfg_node)
{
project_path = project_cfg_node->first->string;
project_path = path_absolute_dst_from_relative_dst_src(scratch.arena, project_cfg_node->first->string, cfg_folder);
}
}