R77: use QIS for scanlines w/o TV effects.

This commit is contained in:
Christian Speckner 2020-03-19 22:48:36 +00:00
parent 9ab2c435e5
commit 6739ada4f2
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ namespace {
// Witv TV / and or scanline interpolation, the image has a height of ~480px. THe R77 runs at 720p, so there
// is no benefit from QIS in y-direction. In addition, QIS on the R77 has performance issues if TV effects are
// enabled.
return settings.getBool("tia.inter") || settings.getInt("tv.filter") != 0 || settings.getInt("tv.scanlines") != 0
return settings.getBool("tia.inter") || settings.getInt("tv.filter") != 0
? FrameBuffer::ScalingInterpolation::blur
: FrameBuffer::ScalingInterpolation::sharp;
#else