mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-16 15:20:11 -05:00
[Enhancement] Add option to hide build details on boot screen (#1948)
This commit is contained in:
parent
1ae4e2c1f7
commit
156f713e19
@ -1539,6 +1539,8 @@ namespace GameMenuBar {
|
||||
ImGui::Text("Loading :");
|
||||
UIWidgets::EnhancementCombobox("gSaveFileID", FastFileSelect, 5, 0);
|
||||
};
|
||||
UIWidgets::PaddedEnhancementCheckbox("Hide Build Info", "gHideBuildInfo", true, false);
|
||||
UIWidgets::Tooltip("Hides the game version and build details in the boot logo start screen");
|
||||
UIWidgets::PaddedEnhancementCheckbox("Better Debug Warp Screen", "gBetterDebugWarpScreen", true, false);
|
||||
UIWidgets::Tooltip("Optimized debug warp screen, with the added ability to chose entrances and time of day");
|
||||
UIWidgets::PaddedSeparator();
|
||||
|
@ -246,7 +246,7 @@ void Title_Main(GameState* thisx) {
|
||||
Title_Calc(this);
|
||||
Title_Draw(this);
|
||||
|
||||
if (1) {
|
||||
if (!CVar_GetS32("gHideBuildInfo", 0)) {
|
||||
Gfx* gfx = POLY_OPA_DISP;
|
||||
s32 pad;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user