home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
FGL112C.ZIP
/
06-03.C
< prev
next >
Wrap
Text File
|
1992-10-05
|
512b
|
30 lines
#include <fastgraf.h>
void main(void);
void main()
{
int max_x, max_y;
int mid_x, mid_y;
int new_mode, old_mode;
old_mode = fg_getmode();
new_mode = fg_automode();
fg_setmode(new_mode);
max_x = fg_getmaxx();
max_y = fg_getmaxy();
mid_x = max_x / 2;
mid_y = max_y / 2;
fg_setcolor(15);
fg_move(mid_x,0);
fg_drawrel(0,max_y);
fg_moverel(-mid_x,-mid_y);
fg_drawrel(max_x,0);
fg_waitkey();
fg_setmode(old_mode);
fg_reset();
}