1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 07:28:30 +02:00

Fix mixed indentation in GraphicsUtil.cpp

To be fair, it was more on the level of entire functions using different
indentation than the surrounding code, but it's not consistent enough
for me to justify leaving it alone.
This commit is contained in:
Misa 2020-04-02 13:35:43 -07:00 committed by Ethan Lee
parent 0947840365
commit 7c511b1550

View File

@ -384,7 +384,7 @@ SDL_Surface* ApplyFilter( SDL_Surface* _src )
}
}
return _ret;
return _ret;
}
void FillRect( SDL_Surface* _surface, const int _x, const int _y, const int _w, const int _h, const int r, int g, int b )