Skip to content

Commit

Permalink
Disabled debugger calls in blitter.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Dec 22, 2020
1 parent eb04fee commit f8939e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/blitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,13 +882,13 @@ static void blit_bltset(int con)
blitfc = !!(bltcon1 & 0x4);
blitife = !!(bltcon1 & 0x8);
if ((bltcon1 & 0x18) == 0x18) {
debugtest(DEBUGTEST_BLITTER, _T("weird fill mode\n"));
//debugtest(DEBUGTEST_BLITTER, _T("weird fill mode\n"));
blitife = 0;
}
if (blitfill && !blitdesc) {
debugtest(DEBUGTEST_BLITTER, _T("fill without desc\n"));
if (log_blitter & 16)
activate_debugger();
//debugtest(DEBUGTEST_BLITTER, _T("fill without desc\n"));
//if (log_blitter & 16)
// activate_debugger();
}
shifter_skip_y = (bltcon0 & (0x100 | 0x200)) != 0x300;
// fill mode idle cycle needed?
Expand Down

0 comments on commit f8939e8

Please # to comment.