Merge pull request #723 from redbirdly/main

fix a pause step bug with wifi_draw.js
This commit is contained in:
slweeb 2024-06-30 19:42:57 -04:00 committed by GitHub
commit a99ccd4d43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -70,8 +70,8 @@ function drawLinks() {
}
var originalDrawPixels2 = drawPixels;
drawPixels = function() {
originalDrawPixels2();
drawPixels = function(forceTick=false) {
originalDrawPixels2(forceTick);
updateLogicLists();
drawLinks();
};
};