aboutsummaryrefslogtreecommitdiff
path: root/xbmc/input/keymaps/KeymapTypes.h
diff options
context:
space:
mode:
authorjenkins4kodi <jenkins4kodi@users.noreply.github.com>2024-05-09 22:47:38 -0700
committerGitHub <noreply@github.com>2024-05-09 22:47:38 -0700
commit5b97125fe1e90342fd2f163a3c04aafefdb034e4 (patch)
tree3324aba055c337107f44bbdc9341ae27f392121d /xbmc/input/keymaps/KeymapTypes.h
parentf1267ebf159d937477e9998e67e47d64ac85d6be (diff)
parentb2211b50232ffa421c7d0c4ef8c7d5c7dbc49caa (diff)
downloadxbmc-5b97125fe1e90342fd2f163a3c04aafefdb034e4.tar.xz
Merge pull request #24700 from bjsvedin/joystick-keymap-overloading
Diffstat (limited to 'xbmc/input/keymaps/KeymapTypes.h')
-rw-r--r--xbmc/input/keymaps/KeymapTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/input/keymaps/KeymapTypes.h b/xbmc/input/keymaps/KeymapTypes.h
index 501766cf18..c2d18609e8 100644
--- a/xbmc/input/keymaps/KeymapTypes.h
+++ b/xbmc/input/keymaps/KeymapTypes.h
@@ -38,7 +38,7 @@ struct KeymapAction
struct KeymapActionGroup
{
int windowId = -1;
- std::set<KeymapAction> actions;
+ std::multiset<KeymapAction> actions;
};
} // namespace KEYMAP
} // namespace KODI