diff options
| author | Eblo <7004497+Eblo@users.noreply.github.com> | 2025-07-21 16:56:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-21 16:56:31 -0400 |
| commit | b9d50a9217fd1f2d302e780b7e775406a4e7b1d3 (patch) | |
| tree | fe86b5310527d30a649124743c60faf34dc18d11 /mm/2s2h/Rando/Menu.cpp | |
| parent | 894630dbfd7319692c4e47802f49a4b89df22be9 (diff) | |
[Rando] Update rando menu description, contributors list (#1205)
* Update rando menu description, contributors list
* Rework contributor display into autoscroll list
Diffstat (limited to 'mm/2s2h/Rando/Menu.cpp')
| -rw-r--r-- | mm/2s2h/Rando/Menu.cpp | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/mm/2s2h/Rando/Menu.cpp b/mm/2s2h/Rando/Menu.cpp index 065a3a793..d05b84f1f 100644 --- a/mm/2s2h/Rando/Menu.cpp +++ b/mm/2s2h/Rando/Menu.cpp @@ -95,7 +95,12 @@ bool IncompatibleWithLogicSetting(int32_t option) { } static void DrawGeneralTab() { - ImGui::BeginChild("randoSettings", ImVec2(ImGui::GetContentRegionAvail().x / 2, 0)); + ImGui::BeginChild("randoSettings"); + ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1, 1, 1, 0.5f)); + ImGui::TextWrapped( + "Explore the menus for various enhancements and time savers; most are not enabled by default in Rando."); + ImGui::PopStyleColor(); + ImGui::SeparatorText("Seed Generation"); UIWidgets::CVarCheckbox("Enable Rando (Randomizes new files upon creation)", "gRando.Enabled"); @@ -138,22 +143,6 @@ static void DrawGeneralTab() { } ImGui::EndChild(); ImGui::SameLine(); - ImGui::BeginChild("randoDisclaimer"); - ImGui::PushStyleColor(ImGuiCol_Text, ColorValues.at(Colors::Gray)); - if (gGitCommitTag[0] == 0) { - ImGui::Text("%s | %s", (char*)gGitBranch, (char*)gGitCommitHash); - } else { - ImGui::Text("%s", (char*)gBuildVersion); - } - ImGui::PopStyleColor(); - ImGui::PushStyleColor(ImGuiCol_Text, ColorValues.at(Colors::Orange)); - ImGui::SeparatorText("Disclaimer"); - ImGui::PopStyleColor(); - ImGui::TextWrapped( - "This is a Beta. Please make note of any odd or unexpected behavior while you are playing, and report it " - "in our [Playtest] Rando Beta thread on Discord under #2s2h-threads.\n\n" - "Explore the menus for various enhancements and time savers, they are not enabled by default in Rando.\n\n"); - ImGui::EndChild(); } static void DrawLogicConditionsTab() { |
