mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 15:45:06 -04: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 :");
|
ImGui::Text("Loading :");
|
||||||
UIWidgets::EnhancementCombobox("gSaveFileID", FastFileSelect, 5, 0);
|
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::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::Tooltip("Optimized debug warp screen, with the added ability to chose entrances and time of day");
|
||||||
UIWidgets::PaddedSeparator();
|
UIWidgets::PaddedSeparator();
|
||||||
|
@ -246,7 +246,7 @@ void Title_Main(GameState* thisx) {
|
|||||||
Title_Calc(this);
|
Title_Calc(this);
|
||||||
Title_Draw(this);
|
Title_Draw(this);
|
||||||
|
|
||||||
if (1) {
|
if (!CVar_GetS32("gHideBuildInfo", 0)) {
|
||||||
Gfx* gfx = POLY_OPA_DISP;
|
Gfx* gfx = POLY_OPA_DISP;
|
||||||
s32 pad;
|
s32 pad;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user