mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Software: Fix "Auto-Adjust Window Size"
This also needs to be handled on the software renderer path.
This commit is contained in:
parent
78428dd8db
commit
9cdc0aca9b
1 changed files with 6 additions and 0 deletions
|
@ -524,7 +524,13 @@ void Presenter::Present()
|
|||
// Video Software doesn't support drawing a UI or doing post-processing
|
||||
// So just show the XFB
|
||||
if (m_xfb_entry)
|
||||
{
|
||||
g_gfx->ShowImage(m_xfb_entry->texture.get(), m_xfb_rect);
|
||||
|
||||
// Update the window size based on the frame that was just rendered.
|
||||
// Due to depending on guest state, we need to call this every frame.
|
||||
SetWindowSize(m_xfb_rect.GetWidth(), m_xfb_rect.GetHeight());
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue