diff --git a/src/sbbs3/scfg/scfg.c b/src/sbbs3/scfg/scfg.c index 5dcb7a422b4aad59a1551a26f468ee40c6a8018c..0716db5b3ffbccf3622e3d52d616d050f47773cb 100644 --- a/src/sbbs3/scfg/scfg.c +++ b/src/sbbs3/scfg/scfg.c @@ -36,7 +36,6 @@ ****************************************************************************/ #include "scfg.h" -#include "conwrap.h" /* getch() */ /********************/ /* Global Variables */ @@ -1904,8 +1903,9 @@ int lprintf(char *fmt, ...) void bail(int code) { if(code) { - puts("\nHit a key..."); - getch(); } + printf("\nHit enter to continue..."); + getchar(); + } else if(forcesave) { uifc.pop("Loading Configs..."); read_main_cfg(&cfg,error); @@ -1979,8 +1979,8 @@ void errormsg(int line, char *source, char action, char *object, ulong access) printf(" action: %s\n",actstr); printf(" object: %s\n",object); printf(" access: %ld (%lx)\n",access,access); - puts("\r\n<Hit any key>"); - getch(); + printf("\nHit enter to continue..."); + getchar(); #if !defined(__unix__) puttext(1,1,80,uifc.scrn_len,scrn_buf); #endif