diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-17 11:30:09 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-17 11:30:11 +0200 |
commit | 51b561907962906ce916708feba8226665d33d7f (patch) | |
tree | d951733a8613378448b65cc4cb1275b5aeeb6eaf /src | |
parent | Merge pull request #1308 from valentinvanelslande/ipc (diff) | |
download | yuzu-51b561907962906ce916708feba8226665d33d7f.tar yuzu-51b561907962906ce916708feba8226665d33d7f.tar.gz yuzu-51b561907962906ce916708feba8226665d33d7f.tar.bz2 yuzu-51b561907962906ce916708feba8226665d33d7f.tar.lz yuzu-51b561907962906ce916708feba8226665d33d7f.tar.xz yuzu-51b561907962906ce916708feba8226665d33d7f.tar.zst yuzu-51b561907962906ce916708feba8226665d33d7f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/game_list_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index f22e422e5..094437090 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -128,7 +128,7 @@ public: LOG_WARNING(Frontend, "Invalid compatibility number {}", compatiblity.toStdString()); return; } - CompatStatus status = iterator->second; + const CompatStatus& status = iterator->second; setData(compatiblity, CompatNumberRole); setText(QObject::tr(status.text)); setToolTip(QObject::tr(status.tooltip)); |