mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-01 13:52:19 -05:00
Check Tracker - Fixes Great Fairy auto-scroll to wrong location
This commit is contained in:
parent
392e764eb5
commit
c80f91a033
@ -739,6 +739,7 @@ void DrawLocations() {
|
|||||||
hasItems = true;
|
hasItems = true;
|
||||||
doAreaScroll =
|
doAreaScroll =
|
||||||
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for grottos
|
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for grottos
|
||||||
|
sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO && // Don't move for fairy fountains
|
||||||
currentArea != lastArea && currentArea == rcArea);
|
currentArea != lastArea && currentArea == rcArea);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -821,6 +822,7 @@ void DrawLocations() {
|
|||||||
hasItems = true;
|
hasItems = true;
|
||||||
doAreaScroll =
|
doAreaScroll =
|
||||||
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for kakusiana/grottos
|
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for kakusiana/grottos
|
||||||
|
sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO && // Don't move for fairy fountains
|
||||||
currentArea != lastArea && currentArea == rcArea);
|
currentArea != lastArea && currentArea == rcArea);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -869,7 +871,7 @@ void DrawLocations() {
|
|||||||
ImGui::EndChild();
|
ImGui::EndChild();
|
||||||
ImGui::EndTable();
|
ImGui::EndTable();
|
||||||
|
|
||||||
if (sceneId != SCENE_KAKUSIANA)
|
if (sceneId != SCENE_KAKUSIANA && sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO)
|
||||||
lastArea = currentArea;
|
lastArea = currentArea;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user