static void blitter_done_all(bool all)
{
blt_info.blit_main = 0;
- blt_info.blit_queued = BLITTER_MAX_PIPELINED_CYCLES;
+ blt_info.blit_queued = blitter_cycle_exact ? BLITTER_MAX_PIPELINED_CYCLES : 0;
blt_info.finishcycle_dmacon = get_cycles();
blt_info.finishcycle_copper = get_cycles() + 1 * CYCLE_UNIT;
blitter_interrupt();
blit_totalcyclecounter = 0;
blt_info.blit_pending = 1;
blt_info.blit_count_done = 0;
+ blt_info.blit_queued = 0;
blitter_start_init();
#define SPRBORDER 0
-#define EXTRAWIDTH_BROADCAST 15
+#define EXTRAWIDTH_BROADCAST 7
#define EXTRAHEIGHT_BROADCAST_TOP 0
#define EXTRAHEIGHT_BROADCAST_BOTTOM 0
#define EXTRAWIDTH_EXTREME 38
static int not_safe_mode;
static bool dmal_next;
+#define MAX_SCANDOUBLED_LINES 1000
+static uae_u32 scandoubled_bpl_ptr[MAX_SCANDOUBLED_LINES][8][2];
+
static evt_t blitter_dma_change_cycle, copper_dma_change_cycle, sprite_dma_change_cycle_on, sprite_dma_change_cycle_off;
static void empty_pipeline(void)
static int linear_display_vpos;
int current_linear_vpos, current_linear_hpos;
static int display_hstart_cyclewait, display_hstart_cyclewait_cnt, display_hstart_cyclewait_end;
+static int display_hstart_cyclewait_skip, display_hstart_cyclewait_skip2;
static bool display_hstart_cyclewait_start;
static int agnus_trigger_cck;
static int linear_vpos_changes;
static uae_u16 bplcon3_saved, bplcon4_saved;
static uae_u16 ddfstrt_saved, ddfstop_saved, diwhigh_saved;
static uae_u32 saved_color_regs_aga[32];
+static struct color_entry agnus_colors;
static int varsync_changed, varsync_maybe_changed[2];
static bool programmed_register_accessed;
static int varhblank_lines, varhblank_val[2];
int sprite_buffer_res;
static uae_s16 bpl1mod, bpl2mod;
-static uaecptr prevbpl[2][MAXVPOS][MAX_PLANES];
-static uaecptr bplpt[MAX_PLANES], bplptx[MAX_PLANES];
+static uaecptr bplpt[MAX_PLANES];
uae_u16 bplcon0;
static uae_u16 bplcon1, bplcon2, bplcon3, bplcon4;
bool aga_mode_new = (currprefs.chipset_mask & CSMASK_AGA) != 0;
if (aga_mode_new && !aga_mode) {
memcpy(denise_colors.color_regs_aga, saved_color_regs_aga, sizeof(saved_color_regs_aga));
+ memcpy(agnus_colors.color_regs_aga, saved_color_regs_aga, sizeof(saved_color_regs_aga));
} else if (!aga_mode_new && aga_mode) {
- memcpy(saved_color_regs_aga, denise_colors.color_regs_aga, sizeof(saved_color_regs_aga));
+ memcpy(saved_color_regs_aga, agnus_colors.color_regs_aga, sizeof(saved_color_regs_aga));
}
aga_mode = aga_mode_new;
ecs_agnus = (currprefs.chipset_mask & CSMASK_ECS_AGNUS) != 0;
}
if (aga_mode) {
for (int i = 0; i < 256; i++) {
- denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_aga[i]);
+ agnus_colors.acolors[i] = denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_aga[i]);
}
}
ddf_mask = ecs_agnus ? 0xfe : 0xfc;
{
update_mirrors();
docols(&denise_colors);
+ docols(&agnus_colors);
}
static uae_u16 get_strobe_reg(int slot)
if (currprefs.gfx_overscanmode >= OVERSCANMODE_ULTRA) {
vidinfo->drawbuffer.inwidth = current_linear_hpos << (res2 + 1);
- } else if (currprefs.gfx_overscanmode >= OVERSCANMODE_EXTREME) {
- vidinfo->drawbuffer.inwidth = (current_linear_hpos - (display_hstart_cyclewait_end + display_hstart_cyclewait) + 3) << (res2 + 1);
} else {
- vidinfo->drawbuffer.inwidth = (current_linear_hpos - (display_hstart_cyclewait_end + display_hstart_cyclewait) + 1) << (res2 + 1);
+ vidinfo->drawbuffer.inwidth = (current_linear_hpos - (display_hstart_cyclewait_skip + display_hstart_cyclewait_skip2)) << (res2 + 1);
}
vidinfo->drawbuffer.inwidth2 = vidinfo->drawbuffer.inwidth;
vidinfo->drawbuffer.extrawidth = -2;
}
} else {
display_hstart_cyclewait = 0;
+ display_hstart_cyclewait_end = 0;
if (currprefs.gfx_overscanmode == OVERSCANMODE_BROADCAST) {
- display_hstart_cyclewait = 30;
- display_hstart_cyclewait_end = 6;
+ display_hstart_cyclewait = 32;
+ display_hstart_cyclewait_end = 9;
} else if (currprefs.gfx_overscanmode <= OVERSCANMODE_OVERSCAN) {
display_hstart_cyclewait = 32;
- display_hstart_cyclewait_end = 7;
+ display_hstart_cyclewait_end = 10;
} else if (currprefs.gfx_overscanmode == OVERSCANMODE_EXTREME) {
display_hstart_cyclewait = 22;
- display_hstart_cyclewait_end = 0;
+ display_hstart_cyclewait_end = 5;
}
}
// calculate max possible display width in lores pixels
if ((beamcon0 & BEAMCON0_VARBEAMEN) && beamcon0_has_hsync) {
int hsstrt_delay = 2;
+ int hb = 0;
+ display_hstart_cyclewait = 0;
+ display_hstart_cyclewait_end = 0;
// assume VGA-like monitor if VARBEAMEN
if (currprefs.gfx_overscanmode >= OVERSCANMODE_ULTRA) {
maxhpos_display = maxhpos + 7;
int hbstrtx, hbstopx;
if (exthblanken) {
- int hb = 1;
+ hb = 1;
hbstrtx = (hbstrt & 0xff) * 2;
hbstopx = (hbstop & 0xff) * 2;
if (aga_mode) {
}
#endif
maxhpos_display = maxhpos - ((hb + 1) / 2);
-
hsstop_detect = hbstopx / 2;
+ display_hstart_cyclewait_end += hb / 2 - 4;
+
} else {
// hardwired
hbstrtx = 0x10;
hbstopx = ecs_denise ? 0x5d : 0x5e;
- int hb = hbstopx - hbstrtx;
+ hb = hbstopx - hbstrtx;
maxhpos_display = maxhpos - (hb / 2);
if (beamcon0_has_hsync) {
hsstop_detect = hsstrt * 2;
} else {
hsstop_detect = hsstop_detect2;
}
+ hb = 0;
}
- display_hstart_cyclewait = 0;
- display_hstart_cyclewait_end = 0;
if (hbstopx / 2 > hsstrt && (hbstopx / 2 - hsstrt < maxhpos / 2)) {
display_hstart_cyclewait = hbstopx / 2 - hsstrt;
} else if (hsstrt - hbstopx / 2 < maxhpos / 2) {
display_hstart_cyclewait = hsstrt - hbstopx / 2;
}
+ if (hb) {
+ display_hstart_cyclewait_end = hb / 2 - display_hstart_cyclewait;
+ display_hstart_cyclewait += 1;
+ }
display_hstart_cyclewait += hsstrt_delay;
if (currprefs.gfx_overscanmode >= OVERSCANMODE_EXTREME) {
hsstop_detect -= (diff / 2) * 2;
}
maxhpos_display = maxhpos - 2;
- //maxvpos_display_vsync += 2;
- } else if (currprefs.gfx_overscanmode == OVERSCANMODE_BROADCAST) {
- maxhpos_display += 8 * EXTRAWIDTH_BROADCAST;
- display_hstart_cyclewait -= 4;
- display_hstart_cyclewait_end -= 4;
- hsstop_detect -= 4;
- //maxvpos_display_vsync++;
}
maxhpos_display *= 2;
+ if (display_hstart_cyclewait_end < 0) {
+ display_hstart_cyclewait_end = 0;
+ }
}
} else if (!(beamcon0 & BEAMCON0_VARBEAMEN)) {
} else {
maxvpos_display--;
}
- } else if (currprefs.gfx_overscanmode == OVERSCANMODE_BROADCAST) {
+ } else if (currprefs.gfx_overscanmode == OVERSCANMODE_EXTREME) {
maxhpos_display += EXTRAWIDTH_EXTREME;
hsstop_detect -= 4;
} else if (currprefs.gfx_overscanmode == OVERSCANMODE_BROADCAST) {
}
minfirstline_linear = minfirstline - (vsync_startline > 0 ? vsync_startline : 0);
+
+ int size = currprefs.gfx_overscanmode >= OVERSCANMODE_ULTRA ? 0 : 4;
+ display_hstart_cyclewait_skip2 = display_hstart_cyclewait_end;
+ display_hstart_cyclewait_skip = display_hstart_cyclewait - size;
+ display_hstart_cyclewait = size;
}
static void init_hz_reset(void)
uae_u16 hp = *hpp;
uae_u16 vp = *vpp;
+ if (syncs_stopped) {
+ return;
+ }
if (hp == 1) {
vp++;
if (vp == maxvpos + lof_store) {
static void BPLxPTH(uae_u16 v, int num)
{
bplpt[num] = (bplpt[num] & 0x0000ffff) | ((uae_u32)v << 16);
- bplptx[num] = (bplptx[num] & 0x0000ffff) | ((uae_u32)v << 16);
}
static void BPLxPTL(uae_u16 v, int num)
{
bplpt[num] = (bplpt[num] & 0xffff0000) | (v & 0x0000fffe);
- bplptx[num] = (bplptx[num] & 0xffff0000) | (v & 0x0000fffe);
}
static uae_u16 BPLCON0_Agnus_mask(uae_u16 v)
c2 = c1 + 64;
c3 = c2 + 64;
c4 = c3 + 64;
- rgb1 = denise_colors.color_regs_aga[c1];
- rgb2 = denise_colors.color_regs_aga[c2];
- rgb3 = denise_colors.color_regs_aga[c3];
- rgb4 = denise_colors.color_regs_aga[c4];
+ rgb1 = agnus_colors.color_regs_aga[c1];
+ rgb2 = agnus_colors.color_regs_aga[c2];
+ rgb3 = agnus_colors.color_regs_aga[c3];
+ rgb4 = agnus_colors.color_regs_aga[c4];
console_out_f (_T("%3d %08X %3d %08X %3d %08X %3d %08X\n"),
c1, rgb1, c2, rgb2, c3, rgb3, c4, rgb4);
}
static uae_u16 COLOR_READ(int num)
{
- int cr, cg, cb, colreg;
- uae_u16 cval;
-
- if (!aga_mode || !(bplcon2 & 0x0100))
+ if (!aga_mode || !(bplcon2 & 0x0100)) {
return 0xffff;
+ }
+ uae_u16 cval;
+ int colreg = ((bplcon3 >> 13) & 7) * 32 + num;
+ int cr = (agnus_colors.color_regs_aga[colreg] >> 16) & 0xFF;
+ int cg = (agnus_colors.color_regs_aga[colreg] >> 8) & 0xFF;
+ int cb = agnus_colors.color_regs_aga[colreg] & 0xFF;
- colreg = ((bplcon3 >> 13) & 7) * 32 + num;
- cr = (denise_colors.color_regs_aga[colreg] >> 16) & 0xFF;
- cg = (denise_colors.color_regs_aga[colreg] >> 8) & 0xFF;
- cb = denise_colors.color_regs_aga[colreg] & 0xFF;
if (bplcon3 & 0x200) {
cval = ((cr & 15) << 8) | ((cg & 15) << 4) | ((cb & 15) << 0);
} else {
cval = ((cr >> 4) << 8) | ((cg >> 4) << 4) | ((cb >> 4) << 0);
- if (denise_colors.color_regs_genlock[num]) {
+ if (agnus_colors.color_regs_genlock[num]) {
cval |= 0x8000;
}
}
return cval;
}
+
+static void COLOR_WRITE(uae_u16 v, int num)
+{
+ if (aga_mode) {
+ if (!aga_mode || (bplcon2 & 0x0100)) {
+ return;
+ }
+
+ int colreg = ((bplcon3 >> 13) & 7) * 32 + num;
+ int r = (v & 0xF00) >> 8;
+ int g = (v & 0xF0) >> 4;
+ int b = (v & 0xF) >> 0;
+ int cr = (agnus_colors.color_regs_aga[colreg] >> 16) & 0xFF;
+ int cg = (agnus_colors.color_regs_aga[colreg] >> 8) & 0xFF;
+ int cb = agnus_colors.color_regs_aga[colreg] & 0xFF;
+
+ if (bplcon3 & 0x200) {
+ cr &= 0xF0; cr |= r;
+ cg &= 0xF0; cg |= g;
+ cb &= 0xF0; cb |= b;
+ } else {
+ cr = r + (r << 4);
+ cg = g + (g << 4);
+ cb = b + (b << 4);
+ agnus_colors.color_regs_genlock[colreg] = v >> 15;
+ }
+ uae_u32 cval = (cr << 16) | (cg << 8) | cb;
+
+ agnus_colors.color_regs_aga[colreg] = cval;
+
+ } else {
+
+ if (!ecs_denise) {
+ v &= 0xfff;
+ }
+ agnus_colors.color_regs_ecs[num] = v & 0xfff;
+ agnus_colors.color_regs_genlock[num] = v >> 15;
+ agnus_colors.acolors[num] = getxcolor(v);
+ agnus_colors.color_regs_aga[num] = agnus_colors.acolors[num];
+
+ }
+}
+
#endif
bool get_custom_color_reg(int colreg, uae_u8 *r, uae_u8 *g, uae_u8 *b)
return false;
}
if (aga_mode) {
- *r = (denise_colors.color_regs_aga[colreg] >> 16) & 0xFF;
- *g = (denise_colors.color_regs_aga[colreg] >> 8) & 0xFF;
- *b = denise_colors.color_regs_aga[colreg] & 0xFF;
+ *r = (agnus_colors.color_regs_aga[colreg] >> 16) & 0xFF;
+ *g = (agnus_colors.color_regs_aga[colreg] >> 8) & 0xFF;
+ *b = agnus_colors.color_regs_aga[colreg] & 0xFF;
} else {
- *r = (denise_colors.color_regs_ecs[colreg] >> 8) & 15;
+ *r = (agnus_colors.color_regs_ecs[colreg] >> 8) & 15;
*r |= (*r) << 4;
- *g = (denise_colors.color_regs_ecs[colreg] >> 4) & 15;
+ *g = (agnus_colors.color_regs_ecs[colreg] >> 4) & 15;
*g |= (*g) << 4;
- *b = (denise_colors.color_regs_ecs[colreg] >> 0) & 15;
+ *b = (agnus_colors.color_regs_ecs[colreg] >> 0) & 15;
*b |= (*b) << 4;
}
return true;
static int get_reg_chip(int reg)
{
if (reg == 0x100 || reg == 0x1fc) {
- return 3;
+ return 1 | 2;
} else if (reg >= 0x102 && reg < 0x108) {
return 1 | 2;
} else if (reg == 0x10c) {
return 1 | 2;
} else if (reg == 0x8e || reg == 0x90 || reg == 0x1e4) {
- return 3;
+ return 1 | 2;
} else if (reg >= 0x180 && reg < 0x180 + 32 * 2) {
- return 2;
+ return 1 | 2;
} else if (reg >= 0x140 && reg < 0x140 + 8 * 8) {
if (reg & 4) {
return 2 + 4;
}
- return 3;
+ return 1 | 2;
} else if (reg >= 0x110 && reg < 0x110 + 8 * 2) {
return 2;
} else if (reg == 0x02c) {
- return 3;
+ return 1 | 2;
} else if (reg == 0x1c4 || reg == 0x1c6) {
- return 3;
+ return 1 | 2;
} else if (reg == 0x098 || reg == 0x10e) {
- return 3;
+ return 1 | 2;
} else if (reg >= 0x38 && reg < 0x40) {
return 2;
}
}
if (aga_mode) {
int sbasecol = ((bplcon4 >> 4) & 15) << 4;
- sprite_0_colors[1] = denise_colors.color_regs_aga[sbasecol + 1] & 0xffffff;
- sprite_0_colors[2] = denise_colors.color_regs_aga[sbasecol + 2] & 0xffffff;
- sprite_0_colors[3] = denise_colors.color_regs_aga[sbasecol + 3] & 0xffffff;
+ sprite_0_colors[1] = agnus_colors.color_regs_aga[sbasecol + 1] & 0xffffff;
+ sprite_0_colors[2] = agnus_colors.color_regs_aga[sbasecol + 2] & 0xffffff;
+ sprite_0_colors[3] = agnus_colors.color_regs_aga[sbasecol + 3] & 0xffffff;
} else {
- sprite_0_colors[1] = xcolors[denise_colors.color_regs_ecs[17] & 0xfff];
- sprite_0_colors[2] = xcolors[denise_colors.color_regs_ecs[18] & 0xfff];
- sprite_0_colors[3] = xcolors[denise_colors.color_regs_ecs[19] & 0xfff];
+ sprite_0_colors[1] = xcolors[agnus_colors.color_regs_ecs[17] & 0xfff];
+ sprite_0_colors[2] = xcolors[agnus_colors.color_regs_ecs[18] & 0xfff];
+ sprite_0_colors[3] = xcolors[agnus_colors.color_regs_ecs[19] & 0xfff];
}
sprite_0_width = sprite_width;
if (currprefs.input_tablet && (currprefs.input_mouse_untrap & MOUSEUNTRAP_MAGIC)) {
}
#endif
- if (issyncstopped(bplcon0) && !syncs_stopped) {
- if (!lol) {
- setsyncstopped();
- }
- }
-
-
#if 0
// AF testing stuff
static int cnt = 0;
hsync_handler_post(vs);
}
-// syncs stopped: generate fake hsyncs to keep everything running
-static void fakehsync_handler(uae_u32 v)
-{
- if (syncs_stopped) {
- hsync_handler(false);
- event2_newevent_xx(-1, CYCLE_UNIT * maxhpos, 0, fakehsync_handler);
- }
-}
-
-static void set_fakehsync_handler(void)
-{
- if (event2_newevent_x_exists(fakehsync_handler)) {
- return;
- }
- event2_newevent_xx(-1, CYCLE_UNIT * maxhpos, 0, fakehsync_handler);
-}
-
static void audio_evhandler2(void)
{
audio_evhandler();
c |= uaerand();
}
c &= 0xfff;
- denise_colors.color_regs_ecs[i] = c;
+ agnus_colors.color_regs_ecs[i] = denise_colors.color_regs_ecs[i] = c;
}
for (int i = 0; i < 256; i++) {
uae_u32 c = 0;
}
c &= 0xffffff;
denise_colors.color_regs_aga[i] = c;
+ agnus_colors.color_regs_aga[i] = c;
}
if (!aga_mode) {
for (int i = 0; i < 32; i++) {
- denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_ecs[i]);
+ agnus_colors.acolors[i] = denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_ecs[i]);
}
#ifdef AGA
} else {
for (int i = 0; i < 256; i++) {
- denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_aga[i]);
+ agnus_colors.acolors[i] = denise_colors.acolors[i] = getxcolor(denise_colors.color_regs_aga[i]);
}
#endif
}
vv = denise_colors.color_regs_ecs[i];
denise_colors.color_regs_ecs[i] = -1;
denise_colors.color_regs_ecs[i] = vv;
- denise_colors.acolors[i] = xcolors[vv];
+ agnus_colors.acolors[i] = denise_colors.acolors[i] = xcolors[vv];
}
#ifdef AGA
} else {
if (i < 32) {
saved_color_regs_aga[i] = vv;
}
- denise_colors.acolors[i] = CONVERT_RGB(vv);
+ agnus_colors.acolors[i] = denise_colors.acolors[i] = CONVERT_RGB(vv);
}
#endif
}
case 0x11A: BPLxDAT(5, value); break;
case 0x11C: BPLxDAT(6, value); break;
case 0x11E: BPLxDAT(7, value); break;
+#endif
case 0x180: case 0x182: case 0x184: case 0x186: case 0x188: case 0x18A:
case 0x18C: case 0x18E: case 0x190: case 0x192: case 0x194: case 0x196:
case 0x1BC: case 0x1BE:
COLOR_WRITE(value & 0x8FFF, (addr & 0x3E) / 2);
break;
-#endif
case 0x120: case 0x124: case 0x128: case 0x12C:
case 0x130: case 0x134: case 0x138: case 0x13C:
intena = RW; /* 09A INTENA */
intreq = RW; /* 09C INTREQ */
adkcon = RW; /* 09E ADKCON */
- for (i = 0; i < 8; i++)
- bplptx[i] = bplpt[i] = RL;
+ for (i = 0; i < 8; i++) {
+ bplpt[i] = RL;
+ }
bplcon0 = RW; /* 100 BPLCON0 */
bplcon1 = RW; /* 102 BPLCON1 */
bplcon2 = RW; /* 104 BPLCON2 */
}
for (i = 0; i < 32; i++) {
uae_u16 v = RW;
- denise_colors.color_regs_genlock[i] = (v & 0x8000) != 0;
- denise_colors.color_regs_ecs[i] = v & 0xfff; /* 180 COLORxx */
- denise_colors.color_regs_aga[i] = getxcolor(v);
+ agnus_colors.color_regs_genlock[i] = denise_colors.color_regs_genlock[i] = (v & 0x8000) != 0;
+ agnus_colors.color_regs_ecs[i] = denise_colors.color_regs_ecs[i] = v & 0xfff; /* 180 COLORxx */
+ agnus_colors.color_regs_ecs[i] = denise_colors.color_regs_ecs[i] = getxcolor(v);
saved_color_regs_aga[i] = getxcolor(v);
}
htotal = RW; /* 1C0 HTOTAL */
denise_update_reg(0x1c4, hbstrt);
denise_update_reg(0x1c6, hbstop);
docols(&denise_colors);
+ docols(&agnus_colors);
intreq2 = intreq;
intena2 = intena;
}
for (i = 0; i < 32; i++) {
if (aga_mode) {
- uae_u32 v = denise_colors.color_regs_aga[i];
+ uae_u32 v = agnus_colors.color_regs_aga[i];
uae_u16 v2;
v &= 0x00f0f0f0;
v2 = (v >> 4) & 15;
v2 |= ((v >> 20) & 15) << 8;
SW(v2);
} else {
- uae_u16 v = denise_colors.color_regs_ecs[i];
- if (denise_colors.color_regs_genlock[i])
+ uae_u16 v = agnus_colors.color_regs_ecs[i];
+ if (agnus_colors.color_regs_genlock[i])
v |= 0x8000;
SW(v); /* 180-1BE COLORxx */
}
if (v & 0x80000000) {
denise_colors.color_regs_genlock[i] = 1;
}
+ agnus_colors.color_regs_genlock[i] = 0;
v &= 0xffffff;
denise_colors.color_regs_aga[i] = v;
+ agnus_colors.color_regs_aga[i] = v;
if (i < 32) {
saved_color_regs_aga[i] = v;
}
#endif
}
docols(&denise_colors);
+ docols(&agnus_colors);
return src;
}
if (!aga_mode) {
int i;
for (i = 0; i < 256; i++) {
- if (denise_colors.color_regs_aga[i] || denise_colors.color_regs_genlock[i])
+ if (agnus_colors.color_regs_aga[i] || agnus_colors.color_regs_genlock[i])
break;
}
if (i == 256)
dstbak = dst = xmalloc (uae_u8, 256 * 4);
for (int i = 0; i < 256; i++)
#ifdef AGA
- SL ((denise_colors.color_regs_aga[i] & 0xffffff) | (denise_colors.color_regs_genlock[i] ? 0x80000000 : 0));
+ SL ((agnus_colors.color_regs_aga[i] & 0xffffff) | (agnus_colors.color_regs_genlock[i] ? 0x80000000 : 0));
#else
SL (0);
#endif
// DDFSTRT
if (hpos == ddfstrt) {
ddf_enable_on = 1;
+ if (currprefs.gfx_scandoubler && vpos < MAX_SCANDOUBLED_LINES) {
+ for (int i = 0; i < MAX_PLANES; i++) {
+ scandoubled_bpl_ptr[vpos][i][lof_store] = bplpt[i];
+ }
+ }
}
// Hard stop limit
// DDFSTRT
if (hpos == ddfstrt) {
ddfstrt_match = true;
+ if (currprefs.gfx_scandoubler && vpos < MAX_SCANDOUBLED_LINES) {
+ for (int i = 0; i < MAX_PLANES; i++) {
+ scandoubled_bpl_ptr[vpos][i][lof_store] = bplpt[i];
+ }
+ }
} else {
ddfstrt_match = false;
}
static void do_scandouble(void)
{
+ int l = lof_store;
+ int vp = vpos;
struct rgabuf rga = { 0 };
for (int i = 0; i < rga_denise_cycle_count; i++) {
int idx = (i + rga_denise_cycle_start) & (DENISE_RGA_SLOT_TOTAL - 1);
struct denise_rga *rd = &rga_denise[idx];
if (rd->rga >= 0x110 && rd->rga < 0x120) {
- rga.pv = rd->pt + 8;
- if (fetchmode_fmode_bpl == 3) {
- rd->v64 = fetch64(&rga);
- } else if (fetchmode_fmode_bpl > 0) {
- rd->v = fetch32_bpl(&rga);
- } else {
- rd->v = fetch16(&rga);
- }
+ int plane = (rd->rga - 0x110) / 2;
+ if (vp < MAX_SCANDOUBLED_LINES) {
+ uaecptr l1 = scandoubled_bpl_ptr[vp][plane][l];
+ uaecptr l2 = scandoubled_bpl_ptr[vp][plane][l ^ 1];
+ rga.pv = rd->pt - l1 + l2;
+ if (fetchmode_fmode_bpl == 3) {
+ rd->v64 = fetch64(&rga);
+ } else if (fetchmode_fmode_bpl > 0) {
+ rd->v = fetch32_bpl(&rga);
+ } else {
+ rd->v = fetch16(&rga);
+ }
+ }
}
}
}
hdisplay_left_border = (get_cck_cycles() - agnus_trigger_cck) - REFRESH_FIRST_HPOS;
int dvp = calculate_linetype(linear_display_vpos);
- int wclks = hpos - display_hstart_cyclewait - display_hstart_cyclewait_end;
+ int wclks = hpos - (display_hstart_cyclewait_skip - display_hstart_cyclewait_skip2);
if (wclks > hpos) {
wclks = hpos;
}
int cs = 0;// (beamcon0 & BEAMCON0_VARHSYEN) ? agnus_phsync_end - agnus_phsync_start : agnus_hsync_end - agnus_hsync_start;
int cslen = 10;
- draw_denise_line(dvp, nextline_how, rga_denise_cycle_line, rga_denise_cycle_start, rga_denise_cycle_count, wclks, cs, cslen);
+ draw_denise_line(dvp, nextline_how, rga_denise_cycle_line, rga_denise_cycle_start, rga_denise_cycle_count,
+ display_hstart_cyclewait_skip, display_hstart_cyclewait_skip2,
+ wclks, cs, cslen);
wclks_prev = wclks;
}
if (custom_fastmode >= 0) {
if (doflickerfix_active()) {
+ denise_store_registers();
+ draw_line(linear_hpos);
+ do_scandouble();
+ denise_restore_registers();
+ lof_display ^= 1;
draw_line(linear_hpos);
- //do_scandouble();
+ lof_display ^= 1;
} else {
draw_line(linear_hpos);
}
static int fast_next_cck;
+// syncs stopped: generate fake hsyncs to keep everything running
+static void fakehsync_handler(uae_u32 v)
+{
+ if (syncs_stopped) {
+ hsync_handler(false);
+ next_denise_rga();
+ event2_newevent_xx(-1, CYCLE_UNIT * maxhpos, 0, fakehsync_handler);
+ }
+}
+
+static void set_fakehsync_handler(void)
+{
+ if (event2_newevent_x_exists(fakehsync_handler)) {
+ return;
+ }
+ event2_newevent_xx(-1, CYCLE_UNIT * maxhpos, 0, fakehsync_handler);
+}
+
static void sync_evhandler(void)
{
eventtab[ev_sync].active = false;
// must check end of line first
if (agnus_hpos == maxhpos) {
agnus_hpos = 0;
+ if (issyncstopped(bplcon0) && !syncs_stopped) {
+ if (!lol) {
+ setsyncstopped();
+ }
+ }
}
if (syncs_stopped) {
- agnus_hpos = 1;
- hhpos = 1;
- linear_hpos = 1;
+ agnus_hpos = 0;
+ hhpos = 0;
+ linear_hpos = 0;
+ dmal_shifter = 0; // fast CPU fix
set_fakehsync_handler();
} else {
rga_denise_cycle++;
static int denise_y_start, denise_y_end;
static int denise_pixtotal, denise_linecnt, denise_startpos, denise_cck, denise_total;
+static int denise_pixtotalskip, denise_pixtotalskip2;
+static int denise_pixtotal_max;
static uae_u32 *buf1, *buf2, *buf_d;
static uae_u16 *gbuf;
static uae_u8 pixx0, pixx1, pixx2, pixx3;
int w = vidinfo->drawbuffer.inwidth;
int ew = vidinfo->drawbuffer.extrawidth;
- int maxdiw = max_diwlastword;
+ int maxdiw = denisehtotal;
if (currprefs.gfx_overscanmode <= OVERSCANMODE_OVERSCAN && currprefs.gfx_xcenter && !fd->gfx_filter_autoscale && max_diwstop > 0) {
}
}
- if (visible_left_border > max_diwlastword - 32)
- visible_left_border = max_diwlastword - 32;
+ if (visible_left_border > denisehtotal - 32)
+ visible_left_border = denisehtotal - 32;
//if (visible_left_border < 0)
visible_left_border = 0;
visible_left_border &= ~((xshift (1, lores_shift)) - 1);
sethresolution();
}
-
// COLORxx write
static void update_color(int idx, uae_u16 v, uae_u16 con2, uae_u16 con3)
{
break;
case 0x110:
- if (aga_mode) {
- if (denise_bplfmode64) {
- bplxdat_64[0] = rd->v64;
- } else {
- bplxdat[0] = rd->v;
- }
+ if (denise_bplfmode64) {
+ bplxdat_64[0] = rd->v64;
} else {
bplxdat[0] = rd->v;
}
break;
case 0x1e4:
if (rd->v != denise_diwhigh2 || rd->v != denise_diwhigh || !diwhigh_written) {
- if (!aga_mode) {
+ // ecs denise superhires check is a hack until lts_unaligned_ecs_shres() is implemented
+ if (!aga_mode && hresolution < RES_SUPERHIRES) {
reswitch_unalign++;
denise_diwhigh2 = rd->v;
} else {
}
if (exthblankon_ecsonly) {
do_exthblankon_ecs();
- if (!denise_csync_blanken2 && denise_csync_blanken && !denise_vblank_active) {
- // When ECS Denise CSYNC programmed blank activates: clear bpl1dat border state and sprite visible state
- hstart_new();
- }
}
if (bpl1dat_unalign && h) {
bpl1dat_enable_bpls();
}
}
+static uae_u16 s_bplcon0, s_bplcon1, s_bplcon2, s_bplcon3, s_bplcon4, s_fmode;
+void denise_store_registers(void)
+{
+ s_bplcon0 = bplcon0_denise;
+ s_bplcon1 = bplcon1_denise;
+ s_bplcon2 = bplcon2_denise;
+ s_bplcon3 = bplcon3_denise;
+ s_bplcon4 = bplcon4_denise;
+ s_fmode = fmode_denise;
+}
+void denise_restore_registers(void)
+{
+ expand_bplcon0(s_bplcon0);
+ expand_bplcon1(s_bplcon1);
+ expand_bplcon2(s_bplcon2);
+ expand_bplcon3(s_bplcon3);
+ expand_bplcon4_spr(s_bplcon4);
+ expand_bplcon4_bm(s_bplcon4);
+ expand_fmode(s_fmode);
+}
+
bool start_draw_denise(void)
{
struct vidbuf_description *vidinfo = &adisplays[0].gfxvidinfo;
}
}
}
+
+ denise_pixtotal_max = denise_pixtotal - denise_pixtotalskip2;
+ denise_pixtotal = -denise_pixtotalskip;
+ if ((denise_pixtotal_max << (1 + hresolution)) > vb->inwidth) {
+ denise_pixtotal_max = vb->inwidth >> (1 + hresolution);
+ }
if (!buf1) {
- denise_pixtotal = -1;
- } else {
- if ((denise_pixtotal << (1 + hresolution)) > vb->inwidth) {
- denise_pixtotal = vb->inwidth >> (1 + hresolution);
- }
+ denise_pixtotal_max = -0x7fffffff;
}
}
-void draw_denise_line(int gfx_ypos, enum nln_how how, uae_u32 linecnt, int startpos, int total, int dtotal, int calib_start, int calib_len)
+static void denise_draw_update(void)
{
- bool fullline = false; // currprefs.chipset_hr;
-
- denise_hcounter_prev = -1;
- denise_pixtotal = dtotal;
- denise_linecnt = linecnt;
- denise_startpos = startpos;
- denise_total = total;
- denise_cck = 0;
if (denise_max_planes != denise_planes) {
int mp = denise_max_planes;
denise_max_planes = denise_planes;
}
}
denise_max_odd_even = denise_odd_even;
+}
+
+void draw_denise_line(int gfx_ypos, enum nln_how how, uae_u32 linecnt, int startpos, int total, int skip, int skip2, int dtotal, int calib_start, int calib_len)
+{
+ bool fullline = false; // currprefs.chipset_hr;
+
+ denise_hcounter_prev = -1;
+ denise_pixtotal = dtotal;
+ denise_pixtotalskip = skip;
+ denise_pixtotalskip2 = skip2;
+ denise_linecnt = linecnt;
+ denise_startpos = startpos;
+ denise_total = total;
+ denise_cck = 0;
+
+ denise_draw_update();
if (fullline) {
denise_pixtotal = denise_total;
hbstrt_ptr1 = NULL;
- if ((dtotal < 0 || linear_vpos >= denise_vblank_extra_vbstop || linear_vpos < denise_vblank_extra_vbstrt) && currprefs.gfx_overscanmode < OVERSCANMODE_ULTRA) {
+ if (denise_pixtotal_max == -0x7fffffff || ((linear_vpos >= denise_vblank_extra_vbstop || linear_vpos < denise_vblank_extra_vbstrt) && currprefs.gfx_overscanmode < OVERSCANMODE_ULTRA)) {
// don't draw vertical blanking if not ultra extreme overscan
while (denise_cck < denise_total) {
denise_cck++;
}
+ if (buf1 && gbuf && denise_pixtotal_max > 0) {
+ memset(gbuf, 0xff, ((2 * denise_pixtotal_max) << hresolution) * sizeof(uae_u16));
+ }
+
} else {
// visible line
uae_u32 *buf1t = buf1;
uae_u32 *buf2t = buf2;
uae_u32 *bufdt = buf_d;
+ uae_u16 *bufg = gbuf;
while (denise_cck < denise_total) {
lts();
}
// blank last pixel row if normal overscan mode, it might have NTSC artifacts
- if (hbstrt_ptr1 && currprefs.gfx_overscanmode <= OVERSCANMODE_OVERSCAN) {
+ if (denise_pixtotal_max != -0x7fffffff && hbstrt_ptr1 && currprefs.gfx_overscanmode <= OVERSCANMODE_OVERSCAN) {
int add = 1 << hresolution;
- hbstrt_ptr1 -= denise_lol_shift_prev;
- hbstrt_ptr2 -= denise_lol_shift_prev;
- for (int i = 0; i < add; i++) {
- *hbstrt_ptr1++ = 0x000000;
- *hbstrt_ptr2++ = 0x000000;
+ uae_u32 *p1 = hbstrt_ptr1 - denise_lol_shift_prev;
+ uae_u32 *p2 = hbstrt_ptr2 - denise_lol_shift_prev;
+ for (int i = 0; i < add * 2; i++) {
+ *p1++ = 0x000000;
+ *p2++ = 0x000000;
}
}
+
if (currprefs.gfx_overscanmode < OVERSCANMODE_OVERSCAN) {
int w = (OVERSCANMODE_OVERSCAN - currprefs.gfx_overscanmode) * 8;
if (currprefs.gfx_overscanmode == 0) {
w -= 4;
}
w <<= hresolution;
- if (hbstrt_ptr1) {
- memset(hbstrt_ptr1 - w, 0, w * sizeof(uae_u32));
- memset(hbstrt_ptr2 - w, 0, w * sizeof(uae_u32));
- }
- if (hbstrt_ptr2) {
- memset(hbstop_ptr1, 0, w * sizeof(uae_u32));
- memset(hbstop_ptr2, 0, w * sizeof(uae_u32));
+ for (int i = 0; i < 4; i++) {
+ uae_u32 *ptr, *ptr2;
+ switch (i)
+ {
+ case 0:
+ ptr = hbstrt_ptr1;
+ ptr2 = buf1t;
+ break;
+ case 1:
+ ptr = hbstrt_ptr2;
+ ptr2 = buf2t;
+ break;
+ case 2:
+ ptr = hbstop_ptr1;
+ ptr2 = buf1t;
+ break;
+ case 3:
+ ptr = hbstop_ptr2;
+ ptr2 = buf2t;
+ break;
+
+ }
+ if (ptr) {
+ uae_u32 *p1 = ptr - denise_lol_shift_prev;
+ memset(p1, 0, w * sizeof(uae_u32));
+ memset(p1 - w, 0, w * sizeof(uae_u32));
+ if (bufg) {
+ uae_u16 *gp1 = (p1 - ptr2) + bufg;
+ memset(gp1, 0xff, w * sizeof(uae_u16));
+ memset(gp1 - w, 0xff, w * sizeof(uae_u16));
+ }
+ }
}
}
dtgbuf[h][ipix] = gpix;
// bitplane and sprite merge & output
- if (!dpixcnt && buf1 && denise_pixtotal >= 0) {
+ if (!dpixcnt && buf1 && denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t = dtbuf[h ^ lol][ipix];
#ifdef DEBUGGER
}
if (exthblankon_ecsonly) {
do_exthblankon_ecs();
+ if (!denise_csync_blanken2 && denise_csync_blanken && !denise_vblank_active) {
+ // When ECS Denise CSYNC programmed blank activates: clear bpl1dat border state and sprite visible state
+ hstart_new();
+ }
}
cnt <<= 2;
bpl1dat_enable_bpls_aga();
bpl1dat_unalign = false;
}
- // DIWHIGH has extra 0.5 CCK delay
- if (denise_diwhigh2 >= 0) {
- denise_diwhigh = denise_diwhigh2;
- denise_diwhigh2 = -1;
- diwhigh_written = true;
- calchdiw();
- }
+ }
+
+ // DIWHIGH has extra 0.5 CCK delay
+ if (denise_diwhigh2 >= 0) {
+ denise_diwhigh = denise_diwhigh2;
+ denise_diwhigh2 = -1;
+ diwhigh_written = true;
+ calchdiw();
}
}
dtgbuf[h][ipix] = gpix;
// bitplane and sprite merge & output
- if (!dpixcnt && buf1 && denise_pixtotal >= 0) {
+ if (!dpixcnt && buf1 && denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t = dtbuf[h ^ lol][ipix];
while (cycles_to_add >= CYCLE_UNIT) {
if (custom_fastmode <= 0) {
- int cyc = cycles_to_add & ~(CYCLE_UNIT - 1);
+ int cyc = cycles_to_add;
cyc = do_cycles_cck(cyc);
cycles_to_add -= cyc;
} else {
}
}
- outf("if (denise_pixtotal >= 0) {");
+ outf("if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {");
// bitplane/sprite merging
off = 0;
}
outf("}");
-
- outf("sprites_hidden = sprites_hidden2;");
}
static void gen_pix(void)
}
}
- outf("if (denise_pixtotal >= 0) {");
+ outf("if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {");
// bitplane/sprite merging
for (int i = 0; i < (1 << outres); i++) {
outf("}");
gen_copybpl();
-
- outf("sprites_hidden = sprites_hidden2;");
}
static void gen_init(void)
}
static void gen_end(void)
{
+ outf(" sprites_hidden = sprites_hidden2;");
outf("#ifdef DEBUGGER");
outf(" *debug_dma_dhpos_odd = denise_hcounter;");
outf("#endif");
outf(" denise_hcounter_next++;");
outf(" denise_hcounter_next &= 511;");
outf(" }");
- outf(" denise_pixtotal--;");
+ outf(" denise_pixtotal++;");
outf(" denise_hcounter = denise_hcounter_new;");
outf(" denise_cck++;");
outf(" }");
}
}
+static void write_funcs(const char *name)
+{
+ outf("static LINETOSRC_FUNC %s[] = {", name);
+ char *p = funcnames;
+ while (*p) {
+ outf("%s,", p);
+ p += strlen(p) + 1;
+ }
+ outf("NULL");
+ outf("};");
+
+ funcnamep = funcnames;
+ *funcnamep = 0;
+}
+
int main (int argc, char *argv[])
{
set_outfile("../../linetoscr_common.cpp");
}
}
- outf("static LINETOSRC_FUNC linetoscr_aga_funcs[] = {");
- char *p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
+ write_funcs("linetoscr_aga_funcs");
- funcnamep = funcnames;
- *funcnamep = 0;
genlock = 1;
for (bplfmode = 0; bplfmode < 3; bplfmode++) {
}
}
- outf("static LINETOSRC_FUNC linetoscr_aga_genlock_funcs[] = {");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
-
+ write_funcs("linetoscr_aga_genlock_funcs");
// OCS/ECS
set_outfile("../../linetoscr_ocs_ecs.cpp");
- funcnamep = funcnames;
- *funcnamep = 0;
aga = 0;
bplfmode = 0;
genlock = 0;
}
}
- outf("static LINETOSRC_FUNC linetoscr_ecs_funcs[] = {");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
+ write_funcs("linetoscr_ecs_funcs");
// OCS/ECS genlock
set_outfile("../../linetoscr_ocs_ecs_genlock.cpp");
- funcnamep = funcnames;
- *funcnamep = 0;
genlock = 1;
for (outres = 0; outres < 3; outres++) {
}
}
- outf("static LINETOSRC_FUNC linetoscr_ecs_genlock_funcs[] = {");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
-
-
-
+ write_funcs("linetoscr_ecs_genlock_funcs");
// OCS/ECS NTSC
set_outfile("../../linetoscr_ocs_ecs_ntsc.cpp");
- funcnamep = funcnames;
- *funcnamep = 0;
aga = 0;
bplfmode = 0;
genlock = 0;
}
}
- outf("static LINETOSRC_FUNC linetoscr_ecs_ntsc_funcs[] = {");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
+ write_funcs("linetoscr_ecs_ntsc_funcs");
// OCS/ECS genlock NTSC
set_outfile("../../linetoscr_ocs_ecs_ntsc_genlock.cpp");
- funcnamep = funcnames;
- *funcnamep = 0;
genlock = 1;
for (outres = 0; outres < 3; outres++) {
}
}
- outf("static LINETOSRC_FUNC linetoscr_ecs_ntsc_genlock_funcs[] = {");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
+ write_funcs("linetoscr_ecs_ntsc_genlock_funcs");
// ECS SuperHires
set_outfile("../../linetoscr_ecs_shres.cpp");
- funcnamep = funcnames;
- *funcnamep = 0;
planes = 2;
res = 2;
modes = 0;
gen_sprpix(1);
gen_matchspr(2);
gen_ecsshresspr();
- outf("if (denise_pixtotal >= 0) {");
+ outf("if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {");
gen_storepix(0, 0);
gen_storepix(2, 2);
outf("}");
gen_sprpix(1);
gen_matchspr(2);
gen_ecsshresspr();
- outf("if (denise_pixtotal >= 0) {");
+ outf("if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {");
gen_storepix(0, 0);
gen_storepix(1, 1);
gen_storepix(2, 2);
gen_tail();
}
- outf("static LINETOSRC_FUNC linetoscr_ecs_shres_%sfuncs[] = {", genlock ? "genlock_" : "");
- p = funcnames;
- while (*p) {
- outf("%s,", p);
- p += strlen(p) + 1;
- }
- outf("};");
+ write_funcs(genlock ? "linetoscr_ecs_shres_genlock_funcs" : "linetoscr_ecs_shres_funcs");
}
closefile();
#define CCK_SHRES_SHIFT 3
-#define max_diwlastword (denisehtotal << CCK_SHRES_SHIFT)
-
/* color values in two formats: 12 (OCS/ECS) or 24 (AGA) bit Amiga RGB (color_regs),
* and the native color value; both for each Amiga hardware color register.
*
void toggle_inhibit_frame(int monid, int bit);
extern struct color_entry denise_colors;
-void draw_denise_line(int gfx_ypos, nln_how how, uae_u32 linecnt, int startpos, int total, int dtotal, int calib_start, int calib_len);
+void draw_denise_line(int gfx_ypos, nln_how how, uae_u32 linecnt, int startpos, int total, int skip, int skip2, int dtotal, int calib_start, int calib_len);
bool draw_denise_line_fast(uae_u8 *bplpt[8], int bplstart, int bpllen, int gfx_ypos, enum nln_how how, int dstart, int dtotal, bool vblank, struct denise_fastsprite *dfs);
bool start_draw_denise(void);
void end_draw_denise(void);
void denise_update_reg(uae_u16 reg, uae_u16 v);
void denise_reset(bool);
bool denise_update_reg_queued(uae_u16 reg, uae_u16 v, uae_u32 cycle);
+void denise_store_registers(void);
+void denise_restore_registers(void);
#endif /* UAE_DRAWING_H */
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
shiftbpl2();
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
shiftbpl4();
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_32();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_32();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_32();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = dtbuf[h ^ lol][0];
#ifdef DEBUGGER
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2_64();
shiftbpl2_64();
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6_64();
shiftbpl6_64();
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][2] = dpix_val2;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl2_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl6_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl2_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl6_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl2_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl6_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_aga_fm2_ham1_p8_ishres_dshres_spr,
lts_aga_fm2_kehb0_p8_ishres_dshres_spr,
lts_aga_fm2_kehb1_p8_ishres_dshres_spr,
+ NULL
};
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[0] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[0] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[1] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = dtbuf[h ^ lol][0];
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4_64();
shiftbpl4_64();
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl8_64();
shiftbpl8_64();
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[2] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl4_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pixs[2] = loaded_pix;
shiftbpl8_64();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl4_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
loaded_pix = getbpl8_64();
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl4_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
loaded_pix = getbpl8_64();
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
}
loaded_pixs[3] = loaded_pix;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_aga_fm2_ham1_p8_ishres_dshres_spr_genlock,
lts_aga_fm2_kehb0_p8_ishres_dshres_spr_genlock,
lts_aga_fm2_kehb1_p8_ishres_dshres_spr_genlock,
+ NULL
};
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
dpix_val3 = dpix_val2;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
#ifdef DEBUGGER
if (decode_specials_debug) {
dpix_val0 = decode_denise_specials_debug(dpix_val0, cnt + 0);
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
dpix_val3 = dpix_val2;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
#ifdef DEBUGGER
if (decode_specials_debug) {
dpix_val0 = decode_denise_specials_debug(dpix_val0, cnt + 0);
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_ecs_shres_dlores,
lts_ecs_shres_dhires,
lts_ecs_shres_dshres,
+ NULL
};
static void lts_ecs_shres_dlores_genlock(void)
{
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
dpix_val3 = dpix_val2;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
#ifdef DEBUGGER
if (decode_specials_debug) {
dpix_val0 = decode_denise_specials_debug(dpix_val0, cnt + 0);
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
dpix_val3 = dpix_val2;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
#ifdef DEBUGGER
if (decode_specials_debug) {
dpix_val0 = decode_denise_specials_debug(dpix_val0, cnt + 0);
if (bpldat_copy[0] && (denise_hcounter & 3) == bplcon1_shift[0]) {
copybpl2();
}
+ sprites_hidden = sprites_hidden2;
#ifdef DEBUGGER
*debug_dma_dhpos_odd = denise_hcounter;
#endif
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
static LINETOSRC_FUNC linetoscr_ecs_shres_genlock_funcs[] = {
- lts_ecs_shres_dlores,
- lts_ecs_shres_dhires,
- lts_ecs_shres_dshres,
lts_ecs_shres_dlores_genlock,
lts_ecs_shres_dhires_genlock,
lts_ecs_shres_dshres_genlock,
+ NULL
};
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_ecs_fm0_ehb1_p6_ihires_dshres_spr,
lts_ecs_fm0_ham0_p6_ihires_dshres_spr,
lts_ecs_fm0_ham1_p6_ihires_dshres_spr,
+ NULL
};
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
uae_u32 t0 = 0;
if (!extblank) {
t0 = dpix_val0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_ecs_fm0_ehb1_p4_ihires_dshres_spr_genlock,
lts_ecs_fm0_ham0_p4_ihires_dshres_spr_genlock,
lts_ecs_fm0_ham1_p4_ihires_dshres_spr_genlock,
+ NULL
};
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl5();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
uae_u32 t0 = 0;
if (!extblank) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl2();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl4();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl5();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
shiftbpl6();
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl2();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix2 = pix1;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtbuf[h][1] = dpix_val1;
dtbuf[h][2] = dpix_val2;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u8 pix1 = pix0;
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_ecs_fm0_ehb1_p6_ihires_dshres_spr_ntsc,
lts_ecs_fm0_ham0_p6_ihires_dshres_spr_ntsc,
lts_ecs_fm0_ham1_p6_ihires_dshres_spr_ntsc,
+ NULL
};
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix0;
}
shiftbpl6();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
sv0 = svt;
}
}
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
uae_u32 t0 = 0;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val1 = dpix_val0;
uae_u8 pix1 = pix0;
uae_u16 gpix1 = gpix0;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
last_bpl_pix = pix1;
}
shiftbpl4();
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
dtbuf[h][0] = dpix_val0;
dtgbuf[h][0] = gpix0;
dtbuf[h][1] = dpix_val1;
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
uae_u32 dpix_val3 = dpix_val2;
uae_u8 pix3 = pix2;
uae_u16 gpix3 = gpix2;
- if (denise_pixtotal >= 0) {
+ if (denise_pixtotal >= 0 && denise_pixtotal < denise_pixtotal_max) {
if (sv0) {
uae_u32 spix0 = denise_render_sprites2(pix0, sv0);
if (spix0) {
denise_hcounter_next++;
denise_hcounter_next &= 511;
}
- denise_pixtotal--;
+ denise_pixtotal++;
denise_hcounter = denise_hcounter_new;
denise_cck++;
}
lts_ecs_fm0_ehb1_p4_ihires_dshres_spr_ntsc_genlock,
lts_ecs_fm0_ham0_p4_ihires_dshres_spr_ntsc_genlock,
lts_ecs_fm0_ham1_p4_ihires_dshres_spr_ntsc_genlock,
+ NULL
};
for (x = 0; x < src->inwidth; x++) {
uae_u8 *s2 = s + src->rowbytes;
uae_u8 *d2 = d + dst->rowbytes;
- if ((!zclken && is_transparent(*s_genlock)) || (zclken && ztoggle)) {
+ if (*s_genlock == 0xffff) {
+ PUT_PRGBA(d, d2, dst, 0, 0, 0, 0, 0, doublelines, false);
+ } else if ((!zclken && is_transparent(*s_genlock)) || (zclken && ztoggle)) {
a = amix2;
if (genlock_error) {
r = 0x00;