Fix code to comply with coding style

This commit is contained in:
unknown
2015-07-29 19:48:08 -06:00
committed by mirrorbender
parent 0faba3b018
commit 739ede2242
4 changed files with 15 additions and 17 deletions

View File

@ -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;
}