Undo debug code

This commit is contained in:
Phillip Stephens 2020-04-15 23:58:00 -07:00
parent c64e3d2ba7
commit 8e2636c14c
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 1 additions and 1 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 : 1.f;
float time = stream.ReadEncoded(1) ? 1.f : 0.f;
x170_scanTimes.emplace_back(state.first, time);
}