File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -660,17 +660,19 @@ class Straight : public Fonts
660
660
661
661
*/
662
662
663
- /*
663
+
664
664
char **four ()
665
665
{
666
- char **character = getCharGrid(ROWS,COLS );
666
+ char **character = getCharGrid (2 , 4 );
667
667
668
- //Enter the character grid in ROWS X COLS
668
+ character[0 ][1 ] = character[0 ][2 ] = ' _' ;
669
+ character[0 ][0 ] = character[0 ][3 ] = character[1 ][3 ] = ' |' ;
670
+
669
671
670
672
return character;
671
673
}
672
674
673
- */
675
+
674
676
675
677
/*
676
678
char **five()
@@ -708,19 +710,17 @@ class Straight : public Fonts
708
710
709
711
*/
710
712
711
-
713
+ /*
712
714
char **eight()
713
715
{
714
- char **character = getCharGrid (3 , 4 );
716
+ char **character = getCharGrid(ROWS,COLS );
715
717
716
- character[0 ][1 ] = character[0 ][2 ] = character[1 ][1 ] = character[1 ][2 ] = character[2 ][1 ] = character[2 ][2 ] = ' _' ;
717
- character[1 ][0 ] = character[2 ][0 ] = ' (' ;
718
- character[1 ][3 ] = character[2 ][3 ] = ' )' ;
718
+ //Enter the character grid in ROWS X COLS
719
719
720
720
return character;
721
721
}
722
722
723
-
723
+ */
724
724
725
725
726
726
char **nine ()
You can’t perform that action at this time.
0 commit comments