Bugfix: #3189, #3208, UV Mirror (MKEY) didn't work.

This commit is contained in:
Brecht Van Lommel
2005-10-20 23:36:24 +00:00
parent 70024f7f62
commit b3053c7426

View File

@@ -325,7 +325,10 @@ void transform_width_height_tface_uv(int *width, int *height)
void mirror_tface_uv(char mirroraxis)
{
Mirror((short)mirroraxis);
if (mirroraxis == 'x')
Mirror(1); /* global x */
else if (mirroraxis == 'y')
Mirror(2); /* global y */
}
void mirrormenu_tface_uv(void)