From 6bbdf36a7b31c6007f02abaca226e44b223707f8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 14 Dec 2023 04:25:37 -0500 Subject: [PATCH] GameListModel: Remove fallthrough in data() A harmless case of it, but this can still cause warnings. --- Source/Core/DolphinQt/GameList/GameListModel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/GameList/GameListModel.cpp b/Source/Core/DolphinQt/GameList/GameListModel.cpp index d8a23dc1cd..a930d66607 100644 --- a/Source/Core/DolphinQt/GameList/GameListModel.cpp +++ b/Source/Core/DolphinQt/GameList/GameListModel.cpp @@ -195,6 +195,7 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const return tags.join(QStringLiteral(", ")); } + break; default: break; }