Re: [AD] Allegro 3.12, gcc 3.x and C++ |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On 02 Oct 2001, salvador <salvador@xxxxxxxxxx> wrote:
> diff -ur allegro.ori/tools/plugins/datgrid.c allegro/tools/plugins/datgrid.c
> --- allegro.ori/tools/plugins/datgrid.c Fri Aug 27 14:17:04 1999
> +++ allegro/tools/plugins/datgrid.c Sat Sep 29 14:10:22 2001
> @@ -94,9 +94,9 @@
> changed = TRUE;
> }
>
> - finishedright:
> }
> -
> + finishedright:
> +
> if ((tw != 0) && (th != 0) && (changed)) {
> BITMAP *b2 = create_bitmap_ex(bitmap_color_depth(bmp), tw, th);
> clear_to_color(b2, b2->vtable->mask_color);
>
The current code has:
... blah ...
finishedright:
;
}
... blah ...
Should I change it?