mirror of
https://github.com/PabloMK7/citra.git
synced 2024-11-16 12:03:25 +01:00
game_list: rewrite format
This commit is contained in:
parent
e5c8b9f0a2
commit
9504aa19d5
@ -173,7 +173,7 @@ public:
|
|||||||
&extension);
|
&extension);
|
||||||
QString title = data(TitleRole).toString();
|
QString title = data(TitleRole).toString();
|
||||||
QString second_name = QString::fromStdString(filename + extension);
|
QString second_name = QString::fromStdString(filename + extension);
|
||||||
QRegExp installed_system_pattern(
|
static QRegExp installed_system_pattern(
|
||||||
QString::fromStdString(
|
QString::fromStdString(
|
||||||
FileUtil::GetUserPath(D_SDMC_IDX) +
|
FileUtil::GetUserPath(D_SDMC_IDX) +
|
||||||
"Nintendo "
|
"Nintendo "
|
||||||
@ -182,9 +182,10 @@ public:
|
|||||||
.replace("\\", "\\\\"));
|
.replace("\\", "\\\\"));
|
||||||
if (installed_system_pattern.exactMatch(QString::fromStdString(path))) {
|
if (installed_system_pattern.exactMatch(QString::fromStdString(path))) {
|
||||||
// Use a different mechanism for system / installed titles showing program ID
|
// Use a different mechanism for system / installed titles showing program ID
|
||||||
second_name = "000" +
|
second_name = QString("%1-%2")
|
||||||
QString::number(data(ProgramIdRole).toULongLong(), 16).toUpper() +
|
.arg(data(ProgramIdRole).toULongLong(), 16, 16, QChar('0'))
|
||||||
"-" + QString::fromStdString(filename);
|
.toUpper()
|
||||||
|
.arg(QString::fromStdString(filename));
|
||||||
}
|
}
|
||||||
return title + (title.isEmpty() ? "" : "\n ") + second_name;
|
return title + (title.isEmpty() ? "" : "\n ") + second_name;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user