From e17c2f239798c00f6094feadc6671a0b0204511e Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 25 Feb 2024 03:00:55 +0300 Subject: [PATCH] gl: Fix compilation --- rpcs3/Emu/RSX/GL/GLPresent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/GL/GLPresent.cpp b/rpcs3/Emu/RSX/GL/GLPresent.cpp index a01d532d57..422829c522 100644 --- a/rpcs3/Emu/RSX/GL/GLPresent.cpp +++ b/rpcs3/Emu/RSX/GL/GLPresent.cpp @@ -320,7 +320,7 @@ void GLGSRender::flip(const rsx::display_flip_info_t& info) if (use_full_rgb_range_output && rsx::fcmp(avconfig.gamma, 1.f) && avconfig.stereo_mode == stereo_render_mode_options::disabled) { // Blit source image to the screen - m_upscaler->scale_output(cmd, image_to_flip->id(), screen_area, aspect_ratio.flipped_vertical(), gl::UPSCALE_AND_COMMIT); + m_upscaler->scale_output(cmd, image_to_flip, screen_area, aspect_ratio.flipped_vertical(), gl::UPSCALE_AND_COMMIT); } else {