1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-12 12:29:32 +00:00

Remove debug code

git-svn-id: svn://svn.cc65.org/cc65/trunk@1802 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-20 21:45:23 +00:00
parent 0f291f0db6
commit 712af18e96

View File

@ -985,26 +985,21 @@ static void MakeNiceScreen (void)
cputcxy (0, 0, CH_ULCORNER);
chline (XSize - 2);
cputc (CH_URCORNER);
cgetc ();
/* Left line */
cvlinexy (0, 1, 23);
cgetc ();
/* Bottom line */
cputc (CH_LLCORNER);
chline (XSize - 2);
cputc (CH_LRCORNER);
cgetc ();
/* Right line */
cvlinexy (XSize - 1, 1, 23);
cgetc ();
/* Several divider lines */
MakeTeeLine (7);
MakeTeeLine (22);
cgetc ();
/* Write something into the frame */
for (I = 0, T = Text; I < sizeof (Text) / sizeof (Text [0]); ++I) {