2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-05 23:15:52 +00:00

CCharAnimTime: Fix operator== between Infinity

This commit is contained in:
Luke Street 2020-08-24 02:28:18 -04:00
parent a0e1864312
commit 3f17c72b30

View File

@ -51,7 +51,7 @@ bool CCharAnimTime::operator==(const CCharAnimTime& other) const {
}
if (other.x4_type == EType::Infinity)
return x0_time * other.x0_time < 0.f;
return x0_time * other.x0_time > 0.f;
return false;
}