File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -687,20 +687,17 @@ class Straight : public Fonts
687
687
688
688
*/
689
689
690
-
690
+ /*
691
691
char **six()
692
692
{
693
- char **character = getCharGrid (3 , 4 );
693
+ char **character = getCharGrid(ROWS,COLS );
694
694
695
- character[0 ][1 ] = character[0 ][2 ] = character[1 ][1 ] = character[1 ][2 ] = character[2 ][1 ] = character[2 ][2 ] = ' _' ;
696
- character[1 ][0 ] = ' /' ;
697
- character[2 ][0 ] = ' \\ ' ;
698
- character[2 ][3 ] = ' )' ;
695
+ //Enter the character grid in ROWS X COLS
699
696
700
697
return character;
701
698
}
702
699
703
-
700
+ */
704
701
705
702
/*
706
703
char **seven()
@@ -714,17 +711,19 @@ class Straight : public Fonts
714
711
715
712
*/
716
713
717
- /*
714
+
718
715
char **eight ()
719
716
{
720
- char **character = getCharGrid(ROWS,COLS );
717
+ char **character = getCharGrid (3 , 4 );
721
718
722
- //Enter the character grid in ROWS X COLS
719
+ character[0 ][1 ] = character[0 ][2 ] = character[1 ][1 ] = character[1 ][2 ] = character[2 ][1 ] = character[2 ][2 ] = ' _' ;
720
+ character[1 ][0 ] = character[2 ][0 ] = ' (' ;
721
+ character[1 ][3 ] = character[2 ][3 ] = ' )' ;
723
722
724
723
return character;
725
724
}
726
725
727
- */
726
+
728
727
729
728
730
729
char **nine ()
You can’t perform that action at this time.
0 commit comments