From e5c8b9f0a2c50202a8a6dd5dee373e7d85ec398b Mon Sep 17 00:00:00 2001
From: zhupengfei <zhupengfei321@sina.cn>
Date: Wed, 23 May 2018 21:36:10 +0800
Subject: [PATCH] game_list: append filename after program ID

---
 src/citra_qt/game_list_p.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/citra_qt/game_list_p.h b/src/citra_qt/game_list_p.h
index 914834131..c0a71df09 100644
--- a/src/citra_qt/game_list_p.h
+++ b/src/citra_qt/game_list_p.h
@@ -182,8 +182,9 @@ public:
                     .replace("\\", "\\\\"));
             if (installed_system_pattern.exactMatch(QString::fromStdString(path))) {
                 // Use a different mechanism for system / installed titles showing program ID
-                second_name =
-                    "000" + QString::number(data(ProgramIdRole).toULongLong(), 16).toUpper();
+                second_name = "000" +
+                              QString::number(data(ProgramIdRole).toULongLong(), 16).toUpper() +
+                              "-" + QString::fromStdString(filename);
             }
             return title + (title.isEmpty() ? "" : "\n     ") + second_name;
         } else {