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

Actually constify showbuf()

Geeze, this is ugly.
parent 4f28970f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2701 failed
......@@ -2755,7 +2755,6 @@ void showbuf(int mode, int left, int top, int width, int height, const char *tit
tmp_buffer2[0].ch=api->chars->help_top_left;
j=title_len;
if(j>width-6) {
*(title+width-6)=0;
j=width-6;
}
for(i=1;i<(width-j)/2;i++)
......@@ -2769,7 +2768,7 @@ 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++) {
for(pc=title;*pc && pc < &title[j];pc++) {
tmp_buffer2[i].ch=*pc;
i++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment