Skip to content

Commit 2a15794

Browse files
authored
Merge pull request #1 from nat-chan/master
Improve smoothness on latest Chrome 75
2 parents 9e5c2ed + 7ccd21b commit 2a15794

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/libs/Board.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var Board = (function() {
2121
},
2222
init: function init(canvasId) {
2323
this.dom = document.getElementById(canvasId);
24-
this.ctx = this.dom.getContext('2d');
24+
this.ctx = this.dom.getContext('2d', {desynchronized: true});
2525

2626
// Additional Configuration
2727
this.ctx.imageSmoothingEnabled = true;

0 commit comments

Comments
 (0)