mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 05:54:57 +00:00
RenderBase: Set m_aspect_wide on start
It doesn't feel great to let the value from a previous emulation session linger around considering that the GC aspect ratio heuristic can use the previous value of m_aspect_wide when calculating m_aspect_wide.
This commit is contained in:
parent
b93b7ec419
commit
a42432cae4
1 changed files with 2 additions and 0 deletions
|
@ -85,6 +85,8 @@ Renderer::Renderer(int backbuffer_width, int backbuffer_height)
|
|||
UpdateDrawRectangle();
|
||||
CalculateTargetSize();
|
||||
|
||||
m_aspect_wide = SConfig::GetInstance().bWii && Config::Get(Config::SYSCONF_WIDESCREEN);
|
||||
|
||||
m_last_host_config_bits = ShaderHostConfig::GetCurrent().bits;
|
||||
m_last_efb_multisamples = g_ActiveConfig.iMultisamples;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue