Ensure that newly registered video displays also have a frame present so they can actually render.

(This causes a problem with detached video on wxGTK but not on wxMSW, oddly.)

Originally committed to SVN as r5439.
This commit is contained in:
Niels Martin Hansen 2011-06-28 10:04:54 +00:00
parent 7c46d0d9b7
commit 41c512ddb3
1 changed files with 1 additions and 0 deletions

View File

@ -333,6 +333,7 @@ void VideoContext::AddDisplay(VideoDisplay *display) {
if ((*cur) == display) return;
}
displayList.push_back(display);
UpdateDisplays(true);
}