mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 15:59:00 +00:00
DolphinQt: fix two -Wunused-lambda-capture warnings
This commit is contained in:
parent
ba656e641e
commit
df3dc80190
1 changed files with 2 additions and 4 deletions
|
@ -132,8 +132,7 @@ void AdvancedPane::CreateLayout()
|
|||
};
|
||||
|
||||
cpu_text();
|
||||
connect(m_cpu_clock_override_slider, &QSlider::valueChanged, this,
|
||||
[this, cpu_text]() { cpu_text(); });
|
||||
connect(m_cpu_clock_override_slider, &QSlider::valueChanged, this, cpu_text);
|
||||
|
||||
m_cpu_clock_override_checkbox->SetDescription(
|
||||
tr("Adjusts the emulated CPU's clock rate.<br><br>"
|
||||
|
@ -177,8 +176,7 @@ void AdvancedPane::CreateLayout()
|
|||
};
|
||||
|
||||
vi_text();
|
||||
connect(m_vi_rate_override_slider, &QSlider::valueChanged, this,
|
||||
[this, vi_text]() { vi_text(); });
|
||||
connect(m_vi_rate_override_slider, &QSlider::valueChanged, this, vi_text);
|
||||
|
||||
m_vi_rate_override_checkbox->SetDescription(
|
||||
tr("Adjusts the VBI frequency. Also adjusts the emulated CPU's "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue