more modules for the MCU code

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-04-11 23:54:25 +02:00
parent 5b82cd8189
commit 6e22bee95c
13 changed files with 170 additions and 83 deletions

View File

@@ -58,8 +58,9 @@ void render(const AppContext* context) {
if(ImGui::BeginMenu("Help")) {
ImGui::Text("FPS: %.2f", ImGui::GetIO().Framerate);
ImGui::SeparatorText("App Info");
ImGui::Text("Project: %s", MY_PROJECT);
ImGui::Text("Version: %s", MY_VERSION);
ImGui::Text("Project: %s", MyProject.c_str());
ImGui::Text("Version: %s", MyProjectVersion.c_str());
ImGui::Text("Build Date: %s", MyProjectBuildDate.c_str());
ImGui::Text("ImGui Version: %s", ImGui::GetVersion());
ImGui::EndMenu();