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

@ -477,11 +477,11 @@ float GetAspectRatio(bool wide)
{
if (wide)
{
return 16.0f/9.0f;
return 16.0f / 9.0f;
}
else
{
return 4.0f/3.0f;
return 4.0f / 3.0f;
}
}
return ((float)width / (float)height) * pixelAR;