Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DOS.CPP
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ ________
/*
......................FUNCTION DEFENITIONS......................... */

void gfx()
void gfx() //Graphics Driver
{
int gdriver = DETECT,gmode;
initgraph(&gdriver,&gmode,"C:\\TC\\BGI");
Expand All @@ -205,7 +205,7 @@ ________
}


void boot()
void boot() //Boot animation
{
clrscr();
gfx();
Expand Down Expand Up @@ -317,7 +317,7 @@ ________
};


void bootlog()
void bootlog() //Boot Login
{
gfx();
int x=0,y=0;
Expand Down