fix a crashy bug in displaymanager when OSD layer is removed

This commit is contained in:
zeromus 2014-04-16 16:31:37 +00:00
parent a3a96381da
commit 1f9cf53a76
1 changed files with 8 additions and 0 deletions

View File

@ -222,6 +222,14 @@ namespace BizHawk.Client.EmuHawk.FilterManager
} //filter loop
//if the current output disposition is a texture, we need to render it
if (currState.SurfaceDisposition == SurfaceDisposition.Texture)
{
var renderer = new Render();
Filters.Insert(Filters.Count, renderer);
goto RETRY;
}
//patch the program so that the final rendertarget set operation is the framebuffer instead
for (int i = Program.Count - 1; i >= 0; i--)
{