Skip to content

Commit

Permalink
Enable option for scaling multiple-horizontal-resolution frames to a …
Browse files Browse the repository at this point in the history
…single width.

This fixes PCE games like the status bar in Order of the Griffon, and hopefully breaks nothing else.
  • Loading branch information
clobber committed Aug 11, 2017
1 parent 1b830fd commit 18a33dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mednafen/pce/vce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,9 @@ INLINE int32 VCE::SyncReal(const int32 timestamp)
cd_event = PCECD_Run(timestamp);

if(sgfx)
SyncSub<true, false>(clocks);
SyncSub<true, true>(clocks);
else
SyncSub<false, false>(clocks);
SyncSub<false, true>(clocks);

//
//
Expand Down

0 comments on commit 18a33dc

Please sign in to comment.