mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-14 12:47:10 +00:00
fixed multiply transmatrix * trans23
This commit is contained in:
@@ -223,7 +223,7 @@ struct trans23 {
|
|||||||
}
|
}
|
||||||
friend trans23 operator * (transmatrix M, trans23 T) {
|
friend trans23 operator * (transmatrix M, trans23 T) {
|
||||||
trans23 t(M);
|
trans23 t(M);
|
||||||
return M * T;
|
return t * T;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user