Skip to content
Snippets Groups Projects
Commit 3a48c297 authored by echicken's avatar echicken
Browse files

Check that x + width are not out of bounds.

parent 6a689aef
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ var ProgressBar = function (x, y, w, pframe) {
if (x < 1 || x > console.screen_columns) throw 'Invalid x: ' + x;
if (y < 1 || y > console.screen_rows) throw 'Invalid y: ' + y;
if (typeof w !== 'number' || w < 5 || w > console.screen_columns) {
if (typeof w !== 'number' || w < 5 || (w + x - 1) > console.screen_columns) {
throw 'Invalid width: ' + w;
}
......
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