fmap poe counter

This commit is contained in:
TakaRikka
2026-05-20 03:19:25 -07:00
parent 5d6e58eeac
commit fa660ebd0f
9 changed files with 183 additions and 0 deletions
+2
View File
@@ -45,6 +45,7 @@ UserSettings g_userSettings = {
.instantText {"game.instantText", false},
.sunsSong {"game.sunsSong", false},
.autoSave {"game.autoSave", false},
.showMapPoeCounter {"game.showMapPoeCounter", false},
// Preferences
.enableMirrorMode {"game.enableMirrorMode", false},
@@ -211,6 +212,7 @@ void registerSettings() {
Register(g_userSettings.game.instantText);
Register(g_userSettings.game.sunsSong);
Register(g_userSettings.game.autoSave);
Register(g_userSettings.game.showMapPoeCounter);
Register(g_userSettings.game.enableMirrorMode);
Register(g_userSettings.game.invertCameraXAxis);
Register(g_userSettings.game.invertCameraYAxis);
+1
View File
@@ -47,6 +47,7 @@ void applyPresetDusk() {
s.game.shadowResolutionMultiplier.setValue(4);
s.game.enableGyroAim.setValue(true);
s.game.autoSave.setValue(true);
s.game.showMapPoeCounter.setValue(true);
}
} // namespace
+2
View File
@@ -1161,6 +1161,8 @@ SettingsWindow::SettingsWindow(bool prelaunch) : mPrelaunch(prelaunch) {
"Link will not recoil when his sword hits walls.");
addOption("No 2nd Fish for Cat", getSettings().game.no2ndFishForCat,
"Skip needing to catch a second fish for Sera's cat.");
addOption("Show Poe Count on Map", getSettings().game.showMapPoeCounter,
"Displays collected/total number of Poe Souls for a region on the map.");
addSpeedrunDisabledOption("Sun's Song (R+X)", getSettings().game.sunsSong,
"Allows Wolf Link to howl and change the time of day.");
addOption("Quick Transform (R+Y)", getSettings().game.enableQuickTransform,