Trying again to fix builds: CMatrix constructor.

This commit is contained in:
Falco Girgis
2025-03-28 00:33:52 -05:00
parent 41e544c0f1
commit 374141eda1
2 changed files with 2 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ public:
RwMatrix *m_attachment = nil;
bool m_hasRwMatrix = false; // are we the owner?
CMatrix(void) {}
CMatrix(CMatrix const &m);
CMatrix(RwMatrix *matrix, bool owner = false);
CMatrix(float scale){

View File

@@ -34,7 +34,7 @@ public:
bool m_hasRwMatrix=false; // are we the owner?
#endif
CMatrix(void)=default;
CMatrix(void) {}
CMatrix(CMatrix const &m);
CMatrix(RwMatrix *matrix, bool owner = false);
CMatrix(float scale){