mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 09:14:54 +00:00
Fix -Wunused-lambda-capture warning
This commit is contained in:
parent
0afbeae70c
commit
6a90affa38
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ HacksWidget::HacksWidget(GraphicsWindow* parent)
|
||||||
connect(parent, &GraphicsWindow::BackendChanged, this, &HacksWidget::OnBackendChanged);
|
connect(parent, &GraphicsWindow::BackendChanged, this, &HacksWidget::OnBackendChanged);
|
||||||
OnBackendChanged(QString::fromStdString(Config::Get(Config::MAIN_GFX_BACKEND)));
|
OnBackendChanged(QString::fromStdString(Config::Get(Config::MAIN_GFX_BACKEND)));
|
||||||
connect(m_gpu_texture_decoding, &QCheckBox::toggled,
|
connect(m_gpu_texture_decoding, &QCheckBox::toggled,
|
||||||
[this, parent] { emit parent->UseGPUTextureDecodingChanged(); });
|
[parent] { emit parent->UseGPUTextureDecodingChanged(); });
|
||||||
}
|
}
|
||||||
|
|
||||||
HacksWidget::HacksWidget(GameConfigWidget* parent, Config::Layer* layer) : m_game_layer(layer)
|
HacksWidget::HacksWidget(GameConfigWidget* parent, Config::Layer* layer) : m_game_layer(layer)
|
||||||
|
|
Loading…
Add table
Reference in a new issue