summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2020-08-17 04:13:14 -0300
committerGravatar GitHub2020-08-17 04:13:14 -0300
commitd8a90e653660e216423bc989918bcdc93c92f006 (patch)
treeca5d61a873948a516314179a8ddb232e3401fe5d
parentMerge pull request #4443 from ameerj/vk-async-shaders (diff)
parentyuzu: Make use of qOverload where applicable (diff)
downloadyuzu-d8a90e653660e216423bc989918bcdc93c92f006.tar.gz
yuzu-d8a90e653660e216423bc989918bcdc93c92f006.tar.xz
yuzu-d8a90e653660e216423bc989918bcdc93c92f006.zip
Merge pull request #4531 from lioncash/overload
yuzu: Make use of qOverload where applicable
Diffstat (limited to '')
-rw-r--r--src/yuzu/debugger/profiler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/debugger/profiler.cpp b/src/yuzu/debugger/profiler.cpp
index 53049ffd6..0e26f765b 100644
--- a/src/yuzu/debugger/profiler.cpp
+++ b/src/yuzu/debugger/profiler.cpp
@@ -109,8 +109,7 @@ MicroProfileWidget::MicroProfileWidget(QWidget* parent) : QWidget(parent) {
109 MicroProfileSetDisplayMode(1); // Timers screen 109 MicroProfileSetDisplayMode(1); // Timers screen
110 MicroProfileInitUI(); 110 MicroProfileInitUI();
111 111
112 connect(&update_timer, &QTimer::timeout, this, 112 connect(&update_timer, &QTimer::timeout, this, qOverload<>(&MicroProfileWidget::update));
113 static_cast<void (MicroProfileWidget::*)()>(&MicroProfileWidget::update));
114} 113}
115 114
116void MicroProfileWidget::paintEvent(QPaintEvent* ev) { 115void MicroProfileWidget::paintEvent(QPaintEvent* ev) {