the uber fix (#4092)

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

View File

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

View File

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