gl_rasterizer: Make floating-point literal a float

Gets rid of an unnecessary expansion from float to double.
This commit is contained in:
Lioncash 2020-11-20 04:24:30 -05:00
parent 92344da20c
commit 8469b76630

View File

@ -1156,7 +1156,7 @@ void RasterizerOpenGL::SyncViewport() {
flags[Dirty::ClipControl] = false;
bool flip_y = false;
if (regs.viewport_transform[0].scale_y < 0.0) {
if (regs.viewport_transform[0].scale_y < 0.0f) {
flip_y = !flip_y;
}
if (regs.screen_y_control.y_negate != 0) {