mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-29 12:52:18 -05:00
Fixes grey screen issue + tooltip for 2 handed shield
This commit is contained in:
parent
e04bc6037e
commit
926fd3f406
@ -1218,7 +1218,7 @@ namespace SohImGui {
|
|||||||
EnhancementCheckbox("Fireproof Deku Shield", "gFireproofDekuShield");
|
EnhancementCheckbox("Fireproof Deku Shield", "gFireproofDekuShield");
|
||||||
Tooltip("Prevents the Deku Shield from burning on contact with fire");
|
Tooltip("Prevents the Deku Shield from burning on contact with fire");
|
||||||
EnhancementCheckbox("Shield with Two-Handed Weapons", "gShieldTwoHanded");
|
EnhancementCheckbox("Shield with Two-Handed Weapons", "gShieldTwoHanded");
|
||||||
Tooltip("This allows you to put up your shield with any two-handed weapon in hand");
|
Tooltip("This allows you to put up your shield with any two-handed weapon in hand\nexcept for Deku Sticks");
|
||||||
|
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
@ -1293,7 +1293,7 @@ namespace SohImGui {
|
|||||||
ImGui::PushStyleVar(ImGuiStyleVar_ChildBorderSize, 0.0f);
|
ImGui::PushStyleVar(ImGuiStyleVar_ChildBorderSize, 0.0f);
|
||||||
ImGui::PushStyleColor(ImGuiCol_ChildBg, ImVec4(0.0f, 0.0f, 0.0f, 0.0f));
|
ImGui::PushStyleColor(ImGuiCol_ChildBg, ImVec4(0.0f, 0.0f, 0.0f, 0.0f));
|
||||||
ImGuiWindowFlags flags = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoBackground;
|
ImGuiWindowFlags flags = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoBackground;
|
||||||
ImGui::Begin("OoT Master Quest", nullptr, flags);
|
ImGui::Begin("Main Game", nullptr, flags);
|
||||||
ImGui::PopStyleVar(3);
|
ImGui::PopStyleVar(3);
|
||||||
ImGui::PopStyleColor();
|
ImGui::PopStyleColor();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user