diff options
Diffstat (limited to 'sysinfo.c')
-rw-r--r-- | sysinfo.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -4,11 +4,32 @@ int bbs_sysinfo( term_screen *ts ) { int ret=0; + //setup screen to show stuff + term_clr_scr( ts ); + + printf("Press ANYKEY \n\n\n"); + + term_cur_set_c( ts, 0 ); printf("BBS:MicroBBS %s (%s)\n", BUILD_VERSION, BUILD_DATE); + + term_cur_set_c( ts, 0 ); printf("Author: FreeArtMan\n"); + + term_cur_set_c( ts, 0 ); printf("Contributor: epoch\n"); + + term_cur_set_c( ts, 0 ); + printf("Main chan: irc://irc.freenode.net#mainlv\n"); + + term_cur_set_c( ts, 0 ); printf("Ideological support: irc://hacking.allowed.org#default\n"); + //main loop wait while press something + term_cur_set_r( ts, term_get_maxrow( ts ) ); + term_cur_set_c( ts, 0 ); + printf(":"); fflush( stdout ); + term_getc( ts ); + return ret; } |