Date: Wed, 29 May 1996 10:43:43 +0200 Message-Id: <2.2.16.19960529093122.26877870@slater.chemie.uni-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: djgpp AT delorie DOT com From: Mathias Koch Subject: gcc 80/50 cprintf Dear Ladies and Gentlemen, I have a problem with using cprintf in the lower half of the screen in text 80/50 mode. When I try to print something colored in this area, the upper lines are scrolled up, although I didn't reach the bottom of the screen and the printed lines are distorted. This short program should reproduce my problem: #include #include #include void main(void) { GrSetMode(GR_width_height_text,80,50); gotoxy(1,1); textcolor(GREEN); cprintf("Zeile 1"); gotoxy(1,48); textcolor(RED); cprintf("Dies ist Zeile 48!"); getch(); GrSetMode(GR_default_text); } I hope, you can help me. Thank you! Mathias Koch