mirror of https://github.com/stella-emu/stella.git
Make sure RomInfoWidget that uses bilinear scaling.
This commit is contained in:
parent
d0e18d7e91
commit
f40917e48a
|
@ -89,7 +89,7 @@ void RomInfoWidget::parseProperties(const FilesystemNode& node)
|
||||||
if(mySurface == nullptr)
|
if(mySurface == nullptr)
|
||||||
{
|
{
|
||||||
mySurface = instance().frameBuffer().allocateSurface(
|
mySurface = instance().frameBuffer().allocateSurface(
|
||||||
TIAConstants::viewableWidth*2, TIAConstants::viewableHeight*2);
|
TIAConstants::viewableWidth*2, TIAConstants::viewableHeight*2, FrameBuffer::ScalingInterpolation::blur);
|
||||||
mySurface->applyAttributes();
|
mySurface->applyAttributes();
|
||||||
|
|
||||||
dialog().addSurface(mySurface);
|
dialog().addSurface(mySurface);
|
||||||
|
|
Loading…
Reference in New Issue