Skip to content

Commit

Permalink
Reverting
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Dec 30, 2023
1 parent b59650f commit 1b5aa9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Emulator/Components/Denise/Denise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ Denise::drawBorder()
isize hblank = 4 * HBLANK_MIN;

// EXPERIMENTAL

/*
if (on && off && hflopOnPrev > hflopOffPrev) {
if (!flop) {
Expand All @@ -1055,7 +1055,7 @@ Denise::drawBorder()
}
return;
}

*/

if (!flop && !on) {

Expand Down
2 changes: 1 addition & 1 deletion Emulator/Components/Denise/DeniseRegs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void
Denise::setHSTRT(isize val)
{
// Invalidate the coordinate if it is out of range
if ((val < 2 || val > 0x1C7) && agnus.pos.v > 8) {
if (val < 2 || val > 0x1C7) {

trace(DIW_DEBUG, "setHSTRT: %ld is out of range\n", val);
val = INT16_MAX;
Expand Down

0 comments on commit 1b5aa9e

Please sign in to comment.