diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-02-11 21:52:15 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-02-11 21:52:15 -0800 |
commit | 90f9f11749badf66785b6fb416d25e72cdc32c2d (patch) | |
tree | 9756acada9554b85f72010e67da1eae1c77b91da /vdp.c | |
parent | 6ed58ab3da90a6987bf3b8d51c7db27ed1513460 (diff) | |
parent | 04b527cd9945160456e8112afb221acef5e1c4fe (diff) |
Merge
Diffstat (limited to 'vdp.c')
-rw-r--r-- | vdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ void vdp_print_sprite_table(vdp_context * context) uint8_t pal = context->vdpmem[address + 4] >> 5 & 0x3; uint8_t pri = context->vdpmem[address + 4] >> 7; uint16_t pattern = ((context->vdpmem[address + 4] << 8 | context->vdpmem[address + 5]) & 0x7FF) << 5; - //printf("Sprite %d: X=%d(%d), Y=%d(%d), Width=%u, Height=%u, Link=%u, Pal=%u, Pri=%u, Pat=%X\n", current_index, x, x-128, y, y-128, width, height, link, pal, pri, pattern); + printf("Sprite %d: X=%d(%d), Y=%d(%d), Width=%u, Height=%u, Link=%u, Pal=%u, Pri=%u, Pat=%X\n", current_index, x, x-128, y, y-128, width, height, link, pal, pri, pattern); current_index = link; count++; } while (current_index != 0 && count < 80); |