Skip to content
Snippets Groups Projects
Commit d77d1a02 authored by Lioncash's avatar Lioncash
Browse files

yuzu/debugger/graphics/graphics_breakpoints: Specify string conversions explicitly

Allows the graphics breakpoints to compile with implicit string
conversions disabled.
parent cad4f2ed
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,7 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(
std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent)
: QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver(
debug_context) {
setObjectName("TegraBreakPointsWidget");
setObjectName(QStringLiteral("TegraBreakPointsWidget"));
status_text = new QLabel(tr("Emulation running"));
resume_button = new QPushButton(tr("Resume"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment