fix a crashy bug in displaymanager when OSD layer is removed
This commit is contained in:
parent
a3a96381da
commit
1f9cf53a76
|
@ -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--)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue