mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Fix code to comply with coding style
This commit is contained in:
parent
0faba3b018
commit
739ede2242
4 changed files with 15 additions and 17 deletions
|
@ -56,11 +56,11 @@ FramebufferManager::FramebufferManager()
|
|||
{
|
||||
m_target_width = Renderer::GetTargetWidth();
|
||||
m_target_height = Renderer::GetTargetHeight();
|
||||
if(m_target_height < 1)
|
||||
if (m_target_height < 1)
|
||||
{
|
||||
m_target_height = 1;
|
||||
}
|
||||
if(m_target_width < 1)
|
||||
if (m_target_width < 1)
|
||||
{
|
||||
m_target_width = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue