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 game.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ void main()
exit(0);
}

msg(1,"21 Chocosticks loaded on the Tray",2,0);
msg(1,"twenty one Chocosticks loaded on the Tray",2,0);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While the other 2 changes below are ok. This one looks like it make it worse (i know! subjective 😄 )

I am OK to merge the other two changed lines if you really want.
Could you please update this Pull Request?


toss();

Expand All @@ -686,7 +686,7 @@ void main()
if(turn) { //Player Move
msg(1,"It is Players turn",1,0);

outtextxy(5,445,"Enter No. of sticks to pick :");
outtextxy(5,445,"Enter Number of sticks to pick :");

setfillstyle(1,DARKGRAY);
bar(240,444,250,454);
Expand Down Expand Up @@ -757,7 +757,7 @@ void main()
if((turn && sticks==1) || (!turn && sticks==0))
msg(0,"YOU Lost !! Better Luck next time",3,1);
else
msg(2,"Congratulations !! YOU WIN",1,1);
msg(2,"Congratulations !! YOU WON",1,1);

cleardevice();
setcolor(WHITE);
Expand Down