Qt: Fix integer scaling not being set when reloading display driver

This commit is contained in:
Vicki Pfau 2019-10-06 02:45:40 -07:00
parent d1ef6d258e
commit ba3a8da286
1 changed files with 1 additions and 0 deletions

View File

@ -905,6 +905,7 @@ void Window::reloadDisplayDriver() {
const mCoreOptions* opts = m_config->options(); const mCoreOptions* opts = m_config->options();
m_display->lockAspectRatio(opts->lockAspectRatio); m_display->lockAspectRatio(opts->lockAspectRatio);
m_display->lockIntegerScaling(opts->lockIntegerScaling);
m_display->interframeBlending(opts->interframeBlending); m_display->interframeBlending(opts->interframeBlending);
m_display->filter(opts->resampleVideo); m_display->filter(opts->resampleVideo);
#if defined(BUILD_GL) || defined(BUILD_GLES2) #if defined(BUILD_GL) || defined(BUILD_GLES2)