X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=io.c;h=258da5513f9bd5eeaf7e14d169925e5bebcd7d15;hb=2d2c83eac8c33303b2b35bf6f1903b7b2f9f1d14;hp=d67c23276c78a4af375b0e78d67eee45b8fa6a79;hpb=a7bad7c3991a4e128c1413f785960d84e1ff87b5;p=super-star-trek.git diff --git a/io.c b/io.c index d67c232..258da55 100644 --- a/io.c +++ b/io.c @@ -169,14 +169,14 @@ void skip(int i) { } static void vproutn(char *fmt, va_list ap) { - char *strbuf, *p, *s; - vasprintf(&strbuf, fmt, ap); - p=s=strbuf; + char *s, *p; + vasprintf(&s, fmt, ap); + p=s; if ((curwnd==4)&&(wherey()==wnds[curwnd].wndbottom-wnds[curwnd].wndtop)){ - if (strchr(strbuf,'\n')){ - p=strchr(strbuf,'\n'); + if (strchr(s,'\n')) { + p=strchr(s,'\n'); p[0]=0; - cprintf("%s",strbuf); + cprintf("%s",s); p++; pause_game(0); } @@ -188,7 +188,7 @@ static void vproutn(char *fmt, va_list ap) { // setwnd(curwnd); if (strchr(s,'\n') || strchr(s,'\r')) clreol(); cprintf("%s",p); - free(strbuf); + free(s); #endif /* SERGEEV */ } @@ -245,10 +245,11 @@ static void prchr(char *s){ } static void vprouts(char *fmt, va_list ap) { - char *s; + char *s, *p; vasprintf(&s, fmt, ap); - while (*s) { - prchr(s++); + p=s; + while (*p) { + prchr(p++); delay(30); } free(s);