1
0
Fork 0
mirror of https://github.com/sexybiggetje/pixdisp.git synced 2024-11-22 09:11:02 +01:00
This commit is contained in:
Martijn de Boer 2018-01-05 15:30:27 +01:00
parent aea974387d
commit c0923430c1

View file

@ -55,7 +55,7 @@ class Driver {
clear( r = 0, g = 0, b = 0, a = 1 ) {
for ( let x = 0; x < this.width; x++ ) {
for ( let y = 0; y < this.height; y++) {
this.setPikel( x, y, r, g, b, a );
this.setPixel( x, y, r, g, b, a );
}
}
}