diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2026-04-12 20:55:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-12 20:55:22 -0500 |
| commit | b62bfe4b30a03077790b61fd8bc4bcadcb0b673b (patch) | |
| tree | 2a3b5909479267586f06f3bfb35a01f671cf0e75 /Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp | |
| parent | 6ed8dec7ac6fd5113adc3664c10875fe452b4efe (diff) | |
| parent | fdbc2883ef3984f9f766aaca0dbae0cf3844e8d2 (diff) | |
Merge pull request #14336 from SuperSamus/arbitrary-mipmap-disables-gpu-decoding
VideoCommon: Invert interaction between Arbitrary Mipmap Detection and GPU Texture Decoding (the former disables the latter)
Diffstat (limited to 'Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp index 98089e6d3d..8e127f454b 100644 --- a/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp +++ b/Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp @@ -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(); |
