aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Brown <themagnificentmrb@gmail.com>2023-02-21 01:10:08 -0800
committerGarrett Brown <themagnificentmrb@gmail.com>2023-02-25 04:37:35 -0800
commitd04a21d63c11a4aaa6a38b5e6e1d90f8a972706e (patch)
treee0acb094f1b9d161693d9c5f736635a2833c80db
parent9bc0c7f56a7ec706736318f5c57776bb912deac8 (diff)
guilib: Fix log warning due to missing control types in GUIListGroup.cpp
-rw-r--r--xbmc/guilib/GUIListGroup.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIListGroup.cpp b/xbmc/guilib/GUIListGroup.cpp
index 15eb1dc1e1..67645c2624 100644
--- a/xbmc/guilib/GUIListGroup.cpp
+++ b/xbmc/guilib/GUIListGroup.cpp
@@ -19,6 +19,8 @@ namespace
const std::set<CGUIControl::GUICONTROLTYPES> supportedTypes = {
// clang-format off
CGUIControl::GUICONTROL_BORDEREDIMAGE,
+ CGUIControl::GUICONTROL_GAME,
+ CGUIControl::GUICONTROL_GAMECONTROLLER,
CGUIControl::GUICONTROL_IMAGE,
CGUIControl::GUICONTROL_LISTGROUP,
CGUIControl::GUICONTROL_LISTLABEL,