Message-Id: <199908210125.VAA27294@delorie.com> From: "Dan Gold" To: Subject: Re: HELP NEEDED ON ALLEGRO!! Date: Fri, 20 Aug 1999 18:26:12 -0700 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com I dont see anything wrong, but I suggest making sure you are in the video mode when you blit or mayby put some parenthesis around the for's to make sure there working correclty. From Dan Gold. ---------- > From: Orvbongat > To: djgpp AT delorie DOT com > Subject: HELP NEEDED ON ALLEGRO!! > Date: Friday, August 20, 1999 1:26 PM > > Here's what i do: > > BITMAP *b; > > b = create_bitmap(32,32); > > for (y = 0; y < 32; y++) > for (x = 0; x < 32; x++) > b->line[y][x] = 12; > > draw_sprite(screen,b,0,0); > > BOOM it crashes after that. Can anyone help???