all repos — mgba @ e25db55ac5ca541039d441a45a8ca7c21e5f38a5

mGBA Game Boy Advance Emulator

Qt: Rename "Resample video" option to "Bilinear filtering"
Vicki Pfau vi@endrift.com
Thu, 02 Feb 2017 16:37:48 -0800
commit

e25db55ac5ca541039d441a45a8ca7c21e5f38a5

parent

ae60489d990dfaf413846958aa08c971ff6ecaf3

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -61,6 +61,7 @@ - Qt: Automatically load controller profile when plugged in

- 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:
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -1232,7 +1232,7 @@ }, this);

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);