Browse Source

Forgot a ! on one of the checks.

Should fix the inversion properly now. Forgot to add a ! operator to one of the button checks for fences button.
pull/175/head
Shinmegumi 8 months ago
parent
commit
284dc8e337
  1. 2
      src/video_core/fence_manager.h

2
src/video_core/fence_manager.h

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

Loading…
Cancel
Save