Error in last commit

Had warnings disabled.
This commit is contained in:
Campbell Barton 2015-09-09 02:39:40 +10:00
parent a2b80d4c48
commit c26a9eed92
Notes: blender-bot 2023-02-14 10:37:50 +01:00
Referenced by issue #46085, baking diffuse color doesn't work properly with uv project
1 changed files with 2 additions and 2 deletions

View File

@ -394,7 +394,7 @@ int BIF_countTransformOrientation(const bContext *C)
bool applyTransformOrientation(const bContext *C, float mat[3][3], char *r_name, int index)
{
ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces;
const TransformOrientation *ts = BLI_findlink(transform_spaces, index);
TransformOrientation *ts = BLI_findlink(transform_spaces, index);
BLI_assert(index >= 0);
@ -1047,7 +1047,7 @@ int getTransformOrientation(const bContext *C, float normal[3], float plane[3])
/* dummy value, not V3D_ACTIVE and not V3D_LOCAL */
short around = V3D_CENTER;
getTransformOrientation_ex(C, normal, plane, around);
return getTransformOrientation_ex(C, normal, plane, around);
}
void ED_getTransformOrientationMatrix(const bContext *C, float orientation_mat[3][3], const short around)