Forgot a ! on one of the checks.
All checks were successful
eden-license / license-header (pull_request) Successful in 19s

Should fix the inversion properly now. Forgot to add a ! operator to one of the button checks for fences button.
This commit is contained in:
Shinmegumi 2025-08-01 22:20:57 +02:00
parent 9d3e1998b1
commit 284dc8e337

View file

@ -77,7 +77,7 @@ public:
void SignalFence(std::function<void()>&& func) {
bool delay_fence = Settings::IsGPULevelHigh();
#ifdef __ANDROID__
if (!delay_fence && Settings::values.early_release_fences.GetValue()) {
if (!delay_fence && !Settings::values.early_release_fences.GetValue()) {
TryReleasePendingFences<false>();
}
#else