mirror of https://github.com/PrimeDecomp/prime.git
parent
d2c055d270
commit
315335a893
|
@ -372,17 +372,11 @@ void CPlayerState::InitializeScanTimes() {
|
||||||
|
|
||||||
float CPlayerState::GetScanTime(CAssetId res) const {
|
float CPlayerState::GetScanTime(CAssetId res) const {
|
||||||
rstl::vector< rstl::pair< CAssetId, float > >::const_iterator it = rstl::find_by_key(x170_scanTimes, res);
|
rstl::vector< rstl::pair< CAssetId, float > >::const_iterator it = rstl::find_by_key(x170_scanTimes, res);
|
||||||
|
|
||||||
if (it != x170_scanTimes.end())
|
|
||||||
return 0.f;
|
|
||||||
|
|
||||||
return it->second;
|
return it->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CPlayerState::SetScanTime(CAssetId res, float time) {
|
void CPlayerState::SetScanTime(CAssetId res, float time) {
|
||||||
rstl::vector< rstl::pair< CAssetId, float > >::iterator it = rstl::find_by_key_nc(x170_scanTimes, res);
|
rstl::vector< rstl::pair< CAssetId, float > >::iterator it = rstl::find_by_key_nc(x170_scanTimes, res);
|
||||||
|
|
||||||
if (it != x170_scanTimes.end())
|
|
||||||
it->second = time;
|
it->second = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue