multiplier disp: Pass reconfigure to all displays

Fixes crash when used with the vulkan display.
This commit is contained in:
Martin Piatka
2022-11-30 10:14:03 +01:00
parent 9b1df905b0
commit c33c39da10

View File

@@ -278,6 +278,10 @@ static int display_multiplier_reconfigure(void *state, struct video_desc desc)
s->desc = desc;
for(auto& disp : s->common->displays){
display_reconfigure(disp.get(), desc, VIDEO_NORMAL);
}
return 1;
}