summaryrefslogtreecommitdiff
path: root/src/hid_core
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.orgq>2025-02-16 13:38:05 +1000
committerMike Lothian <mike@fireburn.co.uk>2025-05-12 12:45:15 +0100
commitfbe41afca4862ce7bece2ffd71473d3a6c6944a8 (patch)
treeb5fb0dbf92cc5cf65fe227ea4bd69a904ff40dc6 /src/hid_core
parenta525f2e317173d191d565497226c56efd54140be (diff)
build: upgrade fmt and SDL2
Update fmt library to version 11.0.2 and make necessary adjustments: - Replace fmt/format.h includes with fmt/ranges.h - Add const qualifiers to formatter::format functions - Update CMake to require fmt version 11 Additional dependency updates: - Update SDL2 bundled version from 2.28.2 to 2.32.0 - Update catch2 to version 3.7.1 - Update vcpkg baseline to ca846b21276c9a3171074ac8d2b4f6516894a7d0
Diffstat (limited to 'src/hid_core')
-rw-r--r--src/hid_core/frontend/emulated_devices.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hid_core/frontend/emulated_devices.cpp b/src/hid_core/frontend/emulated_devices.cpp
index a827aa9b7..f0b543c54 100644
--- a/src/hid_core/frontend/emulated_devices.cpp
+++ b/src/hid_core/frontend/emulated_devices.cpp
@@ -2,7 +2,7 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include <algorithm>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "hid_core/frontend/emulated_devices.h"
#include "hid_core/frontend/input_converter.h"