mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 18:02:46 +00:00
yuzu/debugger/graphics/graphics_breakpoints: Specify string conversions explicitly
Allows the graphics breakpoints to compile with implicit string conversions disabled.
This commit is contained in:
parent
cad4f2ed29
commit
d77d1a0207
|
@ -135,7 +135,7 @@ GraphicsBreakPointsWidget::GraphicsBreakPointsWidget(
|
||||||
std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent)
|
std::shared_ptr<Tegra::DebugContext> debug_context, QWidget* parent)
|
||||||
: QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver(
|
: QDockWidget(tr("Maxwell Breakpoints"), parent), Tegra::DebugContext::BreakPointObserver(
|
||||||
debug_context) {
|
debug_context) {
|
||||||
setObjectName("TegraBreakPointsWidget");
|
setObjectName(QStringLiteral("TegraBreakPointsWidget"));
|
||||||
|
|
||||||
status_text = new QLabel(tr("Emulation running"));
|
status_text = new QLabel(tr("Emulation running"));
|
||||||
resume_button = new QPushButton(tr("Resume"));
|
resume_button = new QPushButton(tr("Resume"));
|
||||||
|
|
Loading…
Reference in a new issue