diff --git a/src/mame/drivers/corona.c b/src/mame/drivers/corona.c index adaa6653a33..373596c437f 100644 --- a/src/mame/drivers/corona.c +++ b/src/mame/drivers/corona.c @@ -26,6 +26,8 @@ Winners Circle. 4-players horse race game. + Very rare game, due to massive conversions to any kind of roulette soft. + ------ This game is a milestone. If you ask any old operator about the gambling @@ -260,8 +262,6 @@ TODO: - - Blitter issues... Fix the H/V stuff. - - Fix the Winners Circle hangs. - Inputs/Outputs for Winners Circle. - Check the sound CPU connection in Winners Circle sets. @@ -345,7 +345,7 @@ static WRITE8_HANDLER( blitter_aux_w ) static READ8_HANDLER( blitter_status_r ) { -/* code check bit 6 and/or bit 7 */ +/* code checks bit 6 and/or bit 7 */ //return space->machine->rand() & 0xc0; /* x--- ---- blitter busy @@ -355,7 +355,7 @@ static READ8_HANDLER( blitter_status_r ) return 0x80 | ((space->machine->primary_screen->vblank() & 1) << 6); } -static void blitter_execute(int x,int y,int color,int width,int flag) +static void blitter_execute(int x, int y, int color, int width, int flag) { int i; int xdir = (flag & 0x10) ? -1 : 1; @@ -366,20 +366,20 @@ static void blitter_execute(int x,int y,int color,int width,int flag) if((flag & 0xc0) == 0) /* square shape / layer clearance */ { - int xp,yp; + int xp, yp; if(x != 128 || y != 128 || width != 8) - printf("%02x %02x %02x %02x %02x\n",x,y,color,width,flag); + printf("%02x %02x %02x %02x %02x\n", x, y, color, width, flag); - for(yp=0;yp<0x100;yp++) - for(xp=0;xp<0x100;xp++) + for(yp = 0; yp < 0x100; yp++) + for(xp = 0; xp < 0x100; xp++) videobuf[(yp & 0x1ff) * 512 + (xp & 0x1ff)] = color; } else /* line shape */ { //printf("%02x %02x %02x %02x %02x\n",x,y,color,width,flag); - for(i=0;i