summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-05-19 01:02:38 -0400
committerGravatar Lioncash2019-05-19 01:10:05 -0400
commitd77d1a02074c4319fe6360207e2c36758fe330dd (patch)
treece1f46faced27041a5ebf81bea6fd3ed93a5c4f4 /src
parentyuzu/debugger/profiler: Specify string conversions explicitly (diff)
downloadyuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.gz
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.tar.xz
yuzu-d77d1a02074c4319fe6360207e2c36758fe330dd.zip
yuzu/debugger/graphics/graphics_breakpoints: Specify string conversions explicitly
Allows the graphics breakpoints to compile with implicit string conversions disabled.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/debugger/graphics/graphics_breakpoints.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
index 67ed0ba6d..1c80082a4 100644
--- a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
+++ b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
@@ -135,7 +135,7 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(
135 std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent) 135 std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent)
136 : QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver( 136 : QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver(
137 debug_context) { 137 debug_context) {
138 setObjectName("TegraBreakPointsWidget"); 138 setObjectName(QStringLiteral("TegraBreakPointsWidget"));
139 139
140 status_text = new QLabel(tr("Emulation running")); 140 status_text = new QLabel(tr("Emulation running"));
141 resume_button = new QPushButton(tr("Resume")); 141 resume_button = new QPushButton(tr("Resume"));