mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-09-17 12:00:37 -04:00
More Linux work. Convert all casts to new style, away from legacy.
This commit is contained in:
@ -185,7 +185,7 @@ public:
|
||||
|
||||
//If this xform was already part of a different ember, then do not assign, else do.
|
||||
if (!m_ParentEmber && (typeid(T) == typeid(U)))
|
||||
m_ParentEmber = (Ember<T>*)xform.ParentEmber();
|
||||
m_ParentEmber = static_cast<Ember<T>*>(xform.ParentEmber());
|
||||
|
||||
CopyVec<T, U>(m_Xaos, xform.XaosVec());
|
||||
CopyVec(m_Motion, xform.m_Motion);
|
||||
|
Reference in New Issue
Block a user