Browse Source

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

Allows the graphics breakpoints to compile with implicit string
conversions disabled.
nce_cpp
Lioncash 7 years ago
parent
commit
a5f4e8c066
  1. 2
      src/yuzu/debugger/graphics/graphics_breakpoints.cpp

2
src/yuzu/debugger/graphics/graphics_breakpoints.cpp

@ -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"));

Loading…
Cancel
Save