Skip to content
Snippets Groups Projects
Commit aa01b577 authored by deuce's avatar deuce
Browse files

Fix bug on line 1037 reported by Ragnarok

(Only appeared when quoting from a message less than half the screen hight
in length.)
parent 2b6f9c29
No related branches found
No related tags found
No related merge requests found
......@@ -1026,7 +1026,6 @@ function make_strings(soft,embed_colour)
function draw_quote_selection(l)
{
var yp;
var x;
if(l==undefined || isNaN(l))
return;
......@@ -1034,7 +1033,7 @@ function draw_quote_selection(l)
/* Does this line even exist? */
if(quote_line[l]==undefined) {
console.attributes=7;
console.gotoxy(x+1,yp);
console.gotoxy(1,yp);
console.cleartoeol();
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment