mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-04-11 03:48:33 +02:00
Use fmt/ranges.h for fmt::join()
fmt 11 requires it.
This commit is contained in:
parent
278db8d1f8
commit
a3d56a4d0b
4 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "os.hpp"
|
||||
|
||||
#include <platform/am.hpp>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
namespace HLE {
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include <codecvt>
|
||||
#include <variant>
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
namespace HLE {
|
||||
|
||||
namespace OS {
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include <sstream>
|
||||
#include <iomanip>
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
// Hardcoded size for PXI buffers.
|
||||
// TODO: These buffers should only be 0x1000 bytes large, but our PXI tables currently may span more than that because they map individual pages as entries
|
||||
const auto pxi_static_buffer_size = 0x2000;
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
#include <filesystem>
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
namespace HLE::PXI {
|
||||
std::array<uint8_t, 16> GenerateAESKey(const std::array<uint8_t, 16>& key_x, const std::array<uint8_t, 16>& key_y);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue