From 4177721f369164fb763bde0d181b695935082063 Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Mon, 30 May 2022 16:36:54 -0400 Subject: [PATCH] set the platform to macos --- libultraship/libultraship/SohImGuiImpl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libultraship/libultraship/SohImGuiImpl.cpp b/libultraship/libultraship/SohImGuiImpl.cpp index 8e4becaab..5d0fb2ac9 100644 --- a/libultraship/libultraship/SohImGuiImpl.cpp +++ b/libultraship/libultraship/SohImGuiImpl.cpp @@ -803,8 +803,12 @@ namespace SohImGui { #ifdef _WIN32 ImGui::Text("Platform: Windows"); +#else +#ifdef __APPLE__ + ImGui::Text("Platform: MacOS"); #else ImGui::Text("Platform: Linux"); +#endif #endif ImGui::Text("Status: %.3f ms/frame (%.1f FPS)", 1000.0f / framerate, framerate); ImGui::End();