Fix T46225: Crash when rendering halo flare
Error introduced in the multiview commit. Also bringing back the "continue" statement instead of "return", as it was before multiview.
This commit is contained in:
@@ -1971,9 +1971,9 @@ void add_halo_flare(Render *re)
|
|||||||
|
|
||||||
rect = RE_RenderLayerGetPass(rl, SCE_PASS_COMBINED, re->viewname);
|
rect = RE_RenderLayerGetPass(rl, SCE_PASS_COMBINED, re->viewname);
|
||||||
|
|
||||||
if (rl==NULL || rect)
|
if (rect==NULL)
|
||||||
return;
|
continue;
|
||||||
|
|
||||||
mode= R.r.mode;
|
mode= R.r.mode;
|
||||||
R.r.mode &= ~R_PANORAMA;
|
R.r.mode &= ~R_PANORAMA;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user