shadPS4/src/common/config.h

25 lines
476 B
C
Raw Normal View History

2024-02-23 21:32:32 +00:00
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2023-08-14 17:17:01 +00:00
#pragma once
2024-02-23 21:32:32 +00:00
2023-08-14 17:17:01 +00:00
#include <filesystem>
#include "types.h"
2023-08-14 17:17:01 +00:00
namespace Config {
void load(const std::filesystem::path& path);
void save(const std::filesystem::path& path);
bool isNeoMode();
std::string getLogFilter();
std::string getLogType();
2023-08-16 07:34:04 +00:00
u32 getScreenWidth();
u32 getScreenHeight();
u32 getGpuId();
2023-08-16 07:34:04 +00:00
bool debugDump();
2024-03-25 07:26:59 +00:00
bool isLleLibc();
}; // namespace Config