diff --git a/CHANGES b/CHANGES index a4fd7a4a0..d563172c1 100644 --- a/CHANGES +++ b/CHANGES @@ -61,6 +61,7 @@ Misc: - OpenGL: Add xBR-lv2 shader - GBA, GB: ROM is now unloaded if a patch is applied - Util: Add 8-bit PNG write support + - Qt: Rename "Resample video" option to "Bilinear filtering" 0.5.2: (2016-12-31) Bugfixes: diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index cd7bfee78..fa4a47ee0 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -1232,7 +1232,7 @@ void Window::setupMenu(QMenuBar* menubar) { m_config->updateOption("lockAspectRatio"); ConfigOption* resampleVideo = m_config->addOption("resampleVideo"); - resampleVideo->addBoolean(tr("Resample video"), avMenu); + resampleVideo->addBoolean(tr("Bilinear filtering"), avMenu); resampleVideo->connect([this](const QVariant& value) { m_display->filter(value.toBool()); }, this);