Skip to content

Commit

Permalink
Logic fix, oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Dec 18, 2023
1 parent 91dbde9 commit 7f075dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Core/HLE/sceDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,9 @@ void __DisplayFlip(int cyclesLate) {

if (fbReallyDirty || noRecentFlip || postEffectRequiresFlip) {
// Check first though, might've just quit / been paused.
nextFrame = Core_NextFrame();
if (!forceNoFlip && nextFrame) {
if (!forceNoFlip)
nextFrame = Core_NextFrame();
if (nextFrame) {
gpu->CopyDisplayToOutput(fbReallyDirty);
if (fbReallyDirty) {
DisplayFireActualFlip();
Expand Down

0 comments on commit 7f075dc

Please sign in to comment.