2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 05:47:42 +00:00

Fix CAutoMapper strings, disable saving on non-USA/GC versions

This commit is contained in:
2020-04-17 05:53:22 -07:00
parent c85f1a64dd
commit a06594f404
3 changed files with 31 additions and 10 deletions

View File

@@ -2580,7 +2580,7 @@ std::pair<u32, u32> CStateManager::CalculateScanCompletionRate() const {
void CStateManager::SetBossParams(TUniqueId bossId, float maxEnergy, u32 stringIdx) {
xf18_bossId = bossId;
xf1c_totalBossEnergy = maxEnergy;
xf20_bossStringIdx = stringIdx;
xf20_bossStringIdx = stringIdx - (g_Main->IsUSA() && !g_Main->IsTrilogy() ? 0 : 6);
}
float CStateManager::IntegrateVisorFog(float f) const {