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

Fix use of unitialized value in quoter.

parent 2b2a9811
No related branches found
No related tags found
No related merge requests found
......@@ -1038,7 +1038,7 @@ function draw_quote_line(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