yuzu/debugger/profiler: Specify string conversions explicitly
This allows the microprofile widget to compile with implicit string conversions disabled.
This commit is contained in:
parent
a059b9eed4
commit
cad4f2ed29
|
@ -47,7 +47,7 @@ private:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
MicroProfileDialog::MicroProfileDialog(QWidget* parent) : QWidget(parent, Qt::Dialog) {
|
MicroProfileDialog::MicroProfileDialog(QWidget* parent) : QWidget(parent, Qt::Dialog) {
|
||||||
setObjectName("MicroProfile");
|
setObjectName(QStringLiteral("MicroProfile"));
|
||||||
setWindowTitle(tr("MicroProfile"));
|
setWindowTitle(tr("MicroProfile"));
|
||||||
resize(1000, 600);
|
resize(1000, 600);
|
||||||
// Remove the "?" button from the titlebar and enable the maximize button
|
// Remove the "?" button from the titlebar and enable the maximize button
|
||||||
|
@ -191,7 +191,7 @@ void MicroProfileDrawText(int x, int y, u32 hex_color, const char* text, u32 tex
|
||||||
for (u32 i = 0; i < text_length; ++i) {
|
for (u32 i = 0; i < text_length; ++i) {
|
||||||
// Position the text baseline 1 pixel above the bottom of the text cell, this gives nice
|
// Position the text baseline 1 pixel above the bottom of the text cell, this gives nice
|
||||||
// vertical alignment of text for a wide range of tested fonts.
|
// vertical alignment of text for a wide range of tested fonts.
|
||||||
mp_painter->drawText(x, y + MICROPROFILE_TEXT_HEIGHT - 2, QChar(text[i]));
|
mp_painter->drawText(x, y + MICROPROFILE_TEXT_HEIGHT - 2, QString{QLatin1Char{text[i]}});
|
||||||
x += MICROPROFILE_TEXT_WIDTH + 1;
|
x += MICROPROFILE_TEXT_WIDTH + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue