mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-26 20:15:03 +00:00
* common: Rewrite logging based on cut down Citra logger * code: Misc fixes * core: Bring back tls handler * linker: Cleanup * config: Remove log level * logging: Enable console output by default * core: Fix windows build
20 lines
404 B
C++
20 lines
404 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include "common/types.h"
|
|
|
|
namespace Config {
|
|
void load(const std::filesystem::path& path);
|
|
void save(const std::filesystem::path& path);
|
|
|
|
bool isNeoMode();
|
|
std::string getLogFilter();
|
|
|
|
u32 getScreenWidth();
|
|
u32 getScreenHeight();
|
|
|
|
}; // namespace Config
|