Added Fullscreen mode (#173)

* Added Fullscreen mode

* fix for config.toml

* fix for config.toml

* Apply review comment
This commit is contained in:
Xphalnos 2024-06-09 12:25:00 +02:00 committed by GitHub
parent 1a66fa098f
commit 1563dffd46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -10,6 +10,7 @@
namespace Config {
static bool isNeo = false;
static bool isFullscreen = true;
static u32 screenWidth = 1280;
static u32 screenHeight = 720;
static s32 gpuId = -1; // Vulkan physical device index. Set to negative for auto select
@ -27,10 +28,15 @@ static bool vkValidationSync = false;
bool isLleLibc() {
return isLibc;
}
bool isNeoMode() {
return isNeo;
}
bool isFullscreenMode() {
return isFullscreen;
}
u32 getScreenWidth() {
return screenWidth;
}
@ -102,6 +108,7 @@ void load(const std::filesystem::path& path) {
auto general = generalResult.unwrap();
isNeo = toml::find_or<toml::boolean>(general, "isPS4Pro", false);
isFullscreen = toml::find_or<toml::boolean>(general, "Fullscreen", true);
logFilter = toml::find_or<toml::string>(general, "logFilter", "");
logType = toml::find_or<toml::string>(general, "logType", "sync");
isShowSplash = toml::find_or<toml::boolean>(general, "showSplash", true);
@ -166,6 +173,7 @@ void save(const std::filesystem::path& path) {
}
data["General"]["isPS4Pro"] = isNeo;
data["General"]["Fullscreen"] = isFullscreen;
data["General"]["logFilter"] = logFilter;
data["General"]["logType"] = logType;
data["General"]["showSplash"] = isShowSplash;