[upstream_utils] Update to SDL joystick mappings from 1-19-2026 (#8593)

Fixes #8103
This commit is contained in:
sciencewhiz
2026-02-07 11:49:30 -06:00
committed by GitHub
parent 2d97cb928f
commit 19c61cc419
6 changed files with 4113 additions and 607 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -58,6 +58,11 @@
//
// 3. This notice may not be removed or altered from any source distribution.
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
#endif
const char* _glfwDefaultMappings[] =
{
#if defined(GLFW_BUILD_WIN32_MAPPINGS)
@@ -80,3 +85,6 @@ const char* _glfwDefaultMappings[] =
#endif // GLFW_BUILD_LINUX_MAPPINGS
};
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif