From f40917e48a94b718e3b32042b04b3cd1c5d8782d Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Mon, 16 Dec 2019 09:00:44 +0100 Subject: [PATCH] Make sure RomInfoWidget that uses bilinear scaling. --- src/gui/RomInfoWidget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/RomInfoWidget.cxx b/src/gui/RomInfoWidget.cxx index e7ec39959..9cef9f0fe 100644 --- a/src/gui/RomInfoWidget.cxx +++ b/src/gui/RomInfoWidget.cxx @@ -89,7 +89,7 @@ void RomInfoWidget::parseProperties(const FilesystemNode& node) if(mySurface == nullptr) { mySurface = instance().frameBuffer().allocateSurface( - TIAConstants::viewableWidth*2, TIAConstants::viewableHeight*2); + TIAConstants::viewableWidth*2, TIAConstants::viewableHeight*2, FrameBuffer::ScalingInterpolation::blur); mySurface->applyAttributes(); dialog().addSurface(mySurface);