Fix missing angle zerolization when 2d stabilization is disabled.

Not sure how it wasn't noticed for so long, probably check happens
in callee as well, but better be safe than sorry here.
This commit is contained in:
2013-05-06 17:24:30 +00:00
parent 7224513f57
commit 9aed3f62d3

View File

@@ -3582,6 +3582,9 @@ ImBuf *BKE_tracking_stabilize_frame(MovieTracking *tracking, int framenr, ImBuf
if (scale)
*scale = 1.0f;
if (angle)
*angle = 0.0f;
return ibuf;
}