This commit is contained in:
Martijn de Boer 2018-01-05 15:30:27 +01:00
parent aea974387d
commit c0923430c1
1 changed files with 1 additions and 1 deletions

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 );
}
}
}