mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 03:15:39 +00:00
Settings: Fix display stretch disabled by linear filtering
This commit is contained in:
parent
faa8ed0031
commit
49345a300c
|
@ -657,7 +657,7 @@ void HostInterface::FixIncompatibleSettings(bool display_osd_messages)
|
||||||
g_settings.display_linear_filtering = false;
|
g_settings.display_linear_filtering = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_settings.display_stretch && g_settings.display_linear_filtering)
|
if (g_settings.display_integer_scaling && g_settings.display_stretch)
|
||||||
{
|
{
|
||||||
Log_WarningPrintf("Disabling stretch due to integer upscaling.");
|
Log_WarningPrintf("Disabling stretch due to integer upscaling.");
|
||||||
g_settings.display_stretch = false;
|
g_settings.display_stretch = false;
|
||||||
|
|
Loading…
Reference in a new issue