mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 13:08:27 +00:00
24 lines
460 B
C++
24 lines
460 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include "types.h"
|
|
|
|
namespace Config {
|
|
void load(const std::filesystem::path& path);
|
|
void save(const std::filesystem::path& path);
|
|
|
|
bool isNeoMode();
|
|
std::string getLogFilter();
|
|
std::string getLogType();
|
|
|
|
u32 getScreenWidth();
|
|
u32 getScreenHeight();
|
|
|
|
bool debugDump();
|
|
bool isLleLibc();
|
|
|
|
}; // namespace Config
|