mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 10:41:15 +00:00
Style
This commit is contained in:
parent
53a0cd0409
commit
fb3e9686bb
@ -404,9 +404,9 @@ void LegoExtraActor::VTable0xc4()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (-0.001 < m_worldSpeed || 0.001 > m_worldSpeed) {
|
if (m_worldSpeed > -0.001 || m_worldSpeed < 0.001) {
|
||||||
MxU16 name = *((MxU16*) m_roi->GetName());
|
MxU16 name = *((MxU16*) m_roi->GetName());
|
||||||
MxBool b = (name == 0x616d || name == 0x6170) ? TRUE : FALSE; // "ma" or "pa"
|
MxBool b = name == TWOCC('m', 'a') || name == TWOCC('p', 'a');
|
||||||
|
|
||||||
if (b) {
|
if (b) {
|
||||||
float duration = m_animMaps[m_curAnim]->GetDuration();
|
float duration = m_animMaps[m_curAnim]->GetDuration();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user