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

Initial string fixes

This commit is contained in:
2020-04-15 23:57:04 -07:00
parent 582d8a6999
commit c64e3d2ba7
8 changed files with 104 additions and 32 deletions

View File

@@ -104,7 +104,7 @@ CPlayerState::CPlayerState(CBitStreamReader& stream)
const auto& scanStates = g_MemoryCardSys->GetScanStates();
x170_scanTimes.reserve(scanStates.size());
for (const auto& state : scanStates) {
float time = stream.ReadEncoded(1) ? 1.f : 0.f;
float time = stream.ReadEncoded(1) ? 1.f : 1.f;
x170_scanTimes.emplace_back(state.first, time);
}