scope ending annotations

This commit is contained in:
Ryan Fleury
2026-05-13 08:58:46 -07:00
parent 264abe57aa
commit 1774a76cdb
4 changed files with 357 additions and 327 deletions
+1 -1
View File
@@ -4880,7 +4880,7 @@ rd_push_window_title(Arena *arena)
prof_path = str8_chop_last_dot(prof_path);
project_name = str8_skip_last_slash(prof_path);
}
String8 result = push_str8f(arena, "%S - %s", project_name, BUILD_TITLE " (" BUILD_VERSION_STRING_LITERAL " " BUILD_RELEASE_PHASE_STRING_LITERAL ")");
String8 result = push_str8f(arena, "%S%s%s", project_name, project_name.size != 0 ? " - " : "", BUILD_TITLE " (" BUILD_VERSION_STRING_LITERAL " " BUILD_RELEASE_PHASE_STRING_LITERAL ")");
return result;
}