Forgot a ! on one of the checks.
All checks were successful
eden-license / license-header (pull_request) Successful in 19s
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:
parent
9d3e1998b1
commit
284dc8e337
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue