Browse Source
[core] Fix buiding with fmt 10 (#2524)
Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2524
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Reviewed-by: crueter <crueter@eden-emu.dev>
Co-authored-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
Co-committed-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
pull/2529/head
Caio Oliveira
3 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
17 additions and
2 deletions
-
src/core/perf_stats.cpp
-
src/core/reporter.cpp
|
|
|
@ -1,3 +1,6 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: 2017 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
@ -41,7 +44,14 @@ PerfStats::~PerfStats() { |
|
|
|
|
|
|
|
const auto path = Common::FS::GetEdenPath(Common::FS::EdenPath::LogDir); |
|
|
|
// %F Date format expanded is "%Y-%m-%d"
|
|
|
|
const auto filename = fmt::format("{:%F-%H-%M}_{:016X}.csv", *std::localtime(&t), title_id); |
|
|
|
const auto filename = fmt::format("{}_{:016X}.csv", |
|
|
|
[&] { |
|
|
|
std::ostringstream oss; |
|
|
|
oss << std::put_time(std::localtime(&t), "%F-%H-%M"); |
|
|
|
return oss.str(); |
|
|
|
}(), |
|
|
|
title_id); |
|
|
|
|
|
|
|
const auto filepath = path / filename; |
|
|
|
|
|
|
|
if (Common::FS::CreateParentDir(filepath)) { |
|
|
|
|
|
|
|
@ -1,3 +1,6 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
@ -33,7 +36,9 @@ std::filesystem::path GetPath(std::string_view type, u64 title_id, std::string_v |
|
|
|
|
|
|
|
std::string GetTimestamp() { |
|
|
|
const auto time = std::time(nullptr); |
|
|
|
return fmt::format("{:%FT%H-%M-%S}", *std::localtime(&time)); |
|
|
|
std::ostringstream oss; |
|
|
|
oss << std::put_time(std::localtime(&time), "%FT%H-%M-%S"); |
|
|
|
return oss.str(); |
|
|
|
} |
|
|
|
|
|
|
|
using namespace nlohmann; |
|
|
|
|