From 604e42bde85f51afc4debf42cf9ff681748d4718 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sat, 18 Mar 2017 20:00:37 +0300 Subject: [PATCH] Revert "gl: Fix vertical blit scaling factor" This reverts commit d64334b02dcc5ae3fea70e25b0e7bdb5e656448b. --- rpcs3/Emu/RSX/GL/GLTextureCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/GL/GLTextureCache.h b/rpcs3/Emu/RSX/GL/GLTextureCache.h index 8e0f16853b..3234b61a0c 100644 --- a/rpcs3/Emu/RSX/GL/GLTextureCache.h +++ b/rpcs3/Emu/RSX/GL/GLTextureCache.h @@ -1082,7 +1082,7 @@ namespace gl //The implementation here adds the inverse scaled clip dimensions onto the source to completely bypass final clipping step float scale_x = (f32)dst.width / src.width; - float scale_y = (f32)dst.height / src.slice_h; + float scale_y = (f32)dst.height / src.height; //Clip offset is unused if the clip offsets are reprojected onto the source position2i clip_offset = {0, 0};//{ dst.clip_x, dst.clip_y };