1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 17:29:50 +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); cputcxy (0, 0, CH_ULCORNER);
chline (XSize - 2); chline (XSize - 2);
cputc (CH_URCORNER); cputc (CH_URCORNER);
cgetc ();
/* Left line */ /* Left line */
cvlinexy (0, 1, 23); cvlinexy (0, 1, 23);
cgetc ();
/* Bottom line */ /* Bottom line */
cputc (CH_LLCORNER); cputc (CH_LLCORNER);
chline (XSize - 2); chline (XSize - 2);
cputc (CH_LRCORNER); cputc (CH_LRCORNER);
cgetc ();
/* Right line */ /* Right line */
cvlinexy (XSize - 1, 1, 23); cvlinexy (XSize - 1, 1, 23);
cgetc ();
/* Several divider lines */ /* Several divider lines */
MakeTeeLine (7); MakeTeeLine (7);
MakeTeeLine (22); MakeTeeLine (22);
cgetc ();
/* Write something into the frame */ /* Write something into the frame */
for (I = 0, T = Text; I < sizeof (Text) / sizeof (Text [0]); ++I) { for (I = 0, T = Text; I < sizeof (Text) / sizeof (Text [0]); ++I) {