linmath: Fix wrong type printed in LMatrix3 repr

[skip ci]
This commit is contained in:
rdb 2026-01-27 16:09:51 +01:00
parent 8bbc1a1515
commit f2c680ca29
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ __rmul__(FLOATTYPE scalar) const {
*/
INLINE_LINMATH std::string Extension<FLOATNAME(LMatrix3)>::
__repr__() const {
char buf[32 * 17] = "LMatrix4";
char buf[32 * 17] = "LMatrix3";
char *p = buf + strlen(buf);
*(p++) = FLOATTOKEN;
*(p++) = '(';