summaryrefslogtreecommitdiff
path: root/mm/2s2h/DeveloperTools/SaveEditor.cpp
diff options
context:
space:
mode:
authorArchez <Archez@users.noreply.github.com>2024-11-13 23:49:02 -0500
committerGitHub <noreply@github.com>2024-11-13 23:49:02 -0500
commit5a735395da23f0531d546832cc0e4117faad9873 (patch)
tree63fb57e912821b099237dcea827154749afa8a4e /mm/2s2h/DeveloperTools/SaveEditor.cpp
parentad50070aba485ab98a3ee3cabd2a2eced8a6583a (diff)
parentdda4e4b5c97a621baf27867f06dd8fa09a684cc4 (diff)
Merge pull request #853 from HarbourMasters/develop-satoko
develop-satoko -> develop
Diffstat (limited to 'mm/2s2h/DeveloperTools/SaveEditor.cpp')
-rw-r--r--mm/2s2h/DeveloperTools/SaveEditor.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/mm/2s2h/DeveloperTools/SaveEditor.cpp b/mm/2s2h/DeveloperTools/SaveEditor.cpp
index 1024b2028..acd9aa9a7 100644
--- a/mm/2s2h/DeveloperTools/SaveEditor.cpp
+++ b/mm/2s2h/DeveloperTools/SaveEditor.cpp
@@ -175,7 +175,7 @@ void UpdateGameTime(u16 gameTime) {
// Clear weather from day 2
gWeatherMode = WEATHER_MODE_CLEAR;
- gPlayState->envCtx.lightningState = LIGHTNING_LAST;
+ gPlayState->envCtx.lightningState = LIGHTNING_OFF;
// When transitioning over night boundaries, stop the sequences and ask to replay, then respawn actors
if (newTimeIsNight != prevTimeIsNight) {
@@ -448,7 +448,7 @@ void DrawGeneralTab() {
func_800FEAF4(&gPlayState->envCtx);
// Clear weather from day 2
gWeatherMode = WEATHER_MODE_CLEAR;
- gPlayState->envCtx.lightningState = LIGHTNING_LAST;
+ gPlayState->envCtx.lightningState = LIGHTNING_OFF;
}
}
// Time speed slider
@@ -559,13 +559,15 @@ void DrawGeneralTab() {
if (ImGui::SliderInt("##setBank", &bankedRupees, 0, 5000, "Banked Rupees: %d")) {
HS_SET_BANK_RUPEES(bankedRupees);
}
- UIWidgets::Tooltip("To recieve the rewards, set the bank to 199, 999, or 4,999 then deposit a single rupee");
+ UIWidgets::Tooltip("To receive the rewards, set the bank to 199, 999, or 4,999 then deposit a single rupee");
UIWidgets::PopStyleSlider();
DrawTempleClears();
UIWidgets::Checkbox("Has Tatl", (bool*)&gSaveContext.save.hasTatl, { .color = UIWidgets::Colors::Gray });
UIWidgets::Checkbox("Is Owl Save", (bool*)&gSaveContext.save.isOwlSave, { .color = UIWidgets::Colors::Gray });
+ UIWidgets::Checkbox("Finished Intro Sequence", (bool*)&gSaveContext.save.isFirstCycle,
+ { .color = UIWidgets::Colors::Gray });
ImGui::EndGroup();
ImGui::PopItemWidth();