Remove tabs in all files except in skyeye imports and in generated GL code

This commit is contained in:
Emmanuel Gil Peyrot 2014-11-19 09:02:05 +00:00
parent f5d38649c7
commit 739bb58c3a
14 changed files with 168 additions and 168 deletions

View file

@ -239,7 +239,7 @@ MathUtil::Rectangle<unsigned> RendererOpenGL::GetViewportExtent() {
MathUtil::Rectangle<unsigned> viewport_extent;
if (window_aspect_ratio > emulation_aspect_ratio) {
// Window is narrower than the emulation content => apply borders to the top and bottom
// Window is narrower than the emulation content => apply borders to the top and bottom
unsigned viewport_height = emulation_aspect_ratio * framebuffer_width;
viewport_extent.left = 0;
viewport_extent.top = (framebuffer_height - viewport_height) / 2;