1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

GL: fix segfault in GLGSRender::flip

This commit is contained in:
Megamouse 2024-03-27 14:21:51 +01:00
parent aa06aaab8e
commit afcfd81496

View File

@ -342,7 +342,7 @@ void GLGSRender::flip(const rsx::display_flip_info_t& info)
}
gl::screen.bind();
m_video_output_pass.run(cmd, areau(aspect_ratio), images.map(FN(x->id())), gamma, limited_range, avconfig.stereo_mode, filter);
m_video_output_pass.run(cmd, areau(aspect_ratio), images.map(FN(x ? x->id() : GL_NONE)), gamma, limited_range, avconfig.stereo_mode, filter);
}
}