mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-06 12:02:54 -04:00
VideoCommon: Invert interaction between Arbitrary Mipmap Detection and GPU Texture Decoding (the former disables the latter)
Split from #14293. It makes sense for a setting that changes visual output to have priority over a setting that barely makes any difference.
This commit is contained in:
@@ -33,7 +33,7 @@ AdvancedWidget::AdvancedWidget(GraphicsPane* gfx_pane) : m_game_layer{gfx_pane->
|
||||
connect(&Settings::Instance(), &Settings::EmulationStateChanged, this, [this](Core::State state) {
|
||||
OnEmulationStateChanged(state != Core::State::Uninitialized);
|
||||
});
|
||||
connect(m_manual_texture_sampling, &QCheckBox::toggled,
|
||||
connect(m_manual_texture_sampling, &QCheckBox::toggled, gfx_pane,
|
||||
[gfx_pane] { emit gfx_pane->UseFastTextureSamplingChanged(); });
|
||||
|
||||
OnBackendChanged();
|
||||
|
||||
Reference in New Issue
Block a user