fix UVFace.rotate

This commit is contained in:
MihailRis 2024-12-25 10:28:31 +03:00
parent 560288b5c3
commit bb038653d6

View File

@ -16,7 +16,7 @@ struct UVFace {
}
template<int n>
inline void rotate(int times) {
inline void rotate() {
int times = n % 4;
if (times < 0) {
times += 4;