mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
MATH: Make Matrix4::inverse not const as it changes data
This commit is contained in:
parent
3ab287bfc4
commit
cb6a58e01e
@ -111,7 +111,7 @@ public:
|
||||
return result;
|
||||
}
|
||||
|
||||
inline bool inverse() const {
|
||||
inline bool inverse() {
|
||||
Matrix<4, 4> invMatrix;
|
||||
float *inv = invMatrix.getData();
|
||||
float *m = (float *)getData();
|
||||
|
Loading…
Reference in New Issue
Block a user