Skip to content
Snippets Groups Projects
Commit fd72586c authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

More constifying of showbuf()

Oddly enough the hbuf wasn't actually modified.
parent 5521849d
Branches
Tags
No related merge requests found
......@@ -481,7 +481,7 @@ typedef struct {
/* Shows a scrollable text buffer - optionally parsing "help markup codes" */
/****************************************************************************/
void (*showbuf)(int mode, int left, int top, int width, int height
,const char *title, char *hbuf, int *curp, int *barp);
,const char *title, const char *hbuf, int *curp, int *barp);
/****************************************************************************/
/* Updates time in upper left corner of screen with current time in ASCII/ */
......
......@@ -88,7 +88,7 @@ static BOOL deny(char *fmt, ...);
static void upop(const char *str);
static void sethelp(int line, char* file);
static void showbuf(int mode, int left, int top, int width, int height, const char *title
, char *hbuf, int *curp, int *barp);
, const char *hbuf, int *curp, int *barp);
/* Dynamic menu support */
static int *last_menu_cur=NULL;
......@@ -2690,12 +2690,12 @@ void sethelp(int line, char* file)
/****************************************************************************/
/* Shows a scrollable text buffer - optionally parsing "help markup codes" */
/****************************************************************************/
void showbuf(int mode, int left, int top, int width, int height, const char *title, char *hbuf, int *curp, int *barp)
void showbuf(int mode, int left, int top, int width, int height, const char *title, const char *hbuf, int *curp, int *barp)
{
char inverse=0,high=0;
struct vmem_cell *textbuf;
struct vmem_cell *p;
char *pc;
const char *cpc;
struct vmem_cell *oldp=NULL;
int i,j,k,len;
int lines;
......@@ -2768,8 +2768,8 @@ void showbuf(int mode, int left, int top, int width, int height, const char *tit
}
tmp_buffer2[i].ch = api->chars->help_titlebreak_left;
i+=2;
for(pc=title;*pc && pc < &title[j];pc++) {
tmp_buffer2[i].ch=*pc;
for(cpc=title;*cpc && cpc < &title[j];cpc++) {
tmp_buffer2[i].ch=*cpc;
i++;
}
i++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment