mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-03-27 13:50:06 -06:00
changed readbacks mode to Relaxed,Precised (#4091)
This commit is contained in:
parent
dbf23a66af
commit
636efaf2b5
@ -25,8 +25,8 @@ enum HideCursorState : int { Never, Idle, Always };
|
||||
|
||||
enum GpuReadbacksMode : int {
|
||||
Disabled,
|
||||
Low,
|
||||
High,
|
||||
Relaxed,
|
||||
Precised,
|
||||
};
|
||||
|
||||
void load(const std::filesystem::path& path, bool is_game_specific = false);
|
||||
|
||||
@ -95,7 +95,7 @@ public:
|
||||
}
|
||||
if constexpr (type == Type::CPU) {
|
||||
UpdateProtection<!enable, false>();
|
||||
} else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::High) {
|
||||
} else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::Precised) {
|
||||
UpdateProtection<enable, true>();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user