Skip to content

Commit

Permalink
Fix command bar flicker in Lemmings 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcc2528 authored Dec 31, 2024
1 parent 2305c0a commit cebeba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/towns/crtc/crtc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ bool TownsCRTC::InHSYNC(const unsigned long long int townsTime) const
bool TownsCRTC::First1msOfVerticalPeriod(const unsigned long long int townsTime) const
{
unsigned int intoFrame=((unsigned long long)townsTime)%VSYNC_CYCLE;
return intoFrame<1000000;
return 1000000<intoFrame;
}

bool TownsCRTC::InSinglePageMode(void) const
Expand Down

0 comments on commit cebeba8

Please sign in to comment.