Skip to content

Commit

Permalink
Log active blitter registers only if blitter logging is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonioni committed Jul 26, 2018
1 parent 614c4d3 commit 8632df4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blitter.cpp
Expand Up @@ -2020,7 +2020,8 @@ uae_u8 *save_blitter_new (int *len, uae_u8 *dstptr)

if (bltstate != BLT_done) {
write_log (_T("BLITTER active while saving state\n"));
blitter_dump ();
if (log_blitter)
blitter_dump ();
}

save_u32 (blit_first_cycle);
Expand Down

0 comments on commit 8632df4

Please sign in to comment.