summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index 86a90526c..3c08ac9a3 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -203,7 +203,9 @@ void NVFlinger::Compose() {
203 203
204 if (!buffer) { 204 if (!buffer) {
205 // There was no queued buffer to draw, render previous frame 205 // There was no queued buffer to draw, render previous frame
206 system.GPU().SwapBuffers({}); 206 auto& gpu = system.GPU();
207 // Always trigger on sync GPU.
208 trigger_event = !gpu.IsAsync();
207 continue; 209 continue;
208 } 210 }
209 211