mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 21:58:45 +00:00
fixed linux?
This commit is contained in:
@@ -16,7 +16,7 @@ namespace nlohmann {
|
|||||||
template <>
|
template <>
|
||||||
struct adl_serializer<std::filesystem::path> {
|
struct adl_serializer<std::filesystem::path> {
|
||||||
static void to_json(json& j, const std::filesystem::path& p) {
|
static void to_json(json& j, const std::filesystem::path& p) {
|
||||||
j = p.u8string();
|
j = p.string();
|
||||||
}
|
}
|
||||||
static void from_json(const json& j, std::filesystem::path& p) {
|
static void from_json(const json& j, std::filesystem::path& p) {
|
||||||
p = j.get<std::string>();
|
p = j.get<std::string>();
|
||||||
|
|||||||
Reference in New Issue
Block a user