changed readbacks mode to Relaxed,Precised (#4091)

This commit is contained in:
georgemoralis 2026-03-01 20:49:55 +02:00 committed by GitHub
parent dbf23a66af
commit 636efaf2b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ enum HideCursorState : int { Never, Idle, Always };
enum GpuReadbacksMode : int { enum GpuReadbacksMode : int {
Disabled, Disabled,
Low, Relaxed,
High, Precised,
}; };
void load(const std::filesystem::path& path, bool is_game_specific = false); void load(const std::filesystem::path& path, bool is_game_specific = false);

View File

@ -95,7 +95,7 @@ public:
} }
if constexpr (type == Type::CPU) { if constexpr (type == Type::CPU) {
UpdateProtection<!enable, false>(); UpdateProtection<!enable, false>();
} else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::High) { } else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::Precised) {
UpdateProtection<enable, true>(); UpdateProtection<enable, true>();
} }
} }