Skip to content

Commit

Permalink
fix bug in wait_until_vga_screen_contains (sometimes caused tests to …
Browse files Browse the repository at this point in the history
…hang)
  • Loading branch information
copy committed Sep 30, 2024
1 parent b7a54ba commit 5cf6a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/starter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ V86.prototype.wait_until_vga_screen_contains = function(text)
function put_char(args)
{
const [row, col, char] = args;
changed_rows.add(col);
changed_rows.add(row);
}

const check = () =>
Expand Down

0 comments on commit 5cf6a65

Please sign in to comment.