mirror of
https://github.com/sexybiggetje/pixdisp.git
synced 2024-11-22 09:11:02 +01:00
Fix typo
This commit is contained in:
parent
aea974387d
commit
c0923430c1
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class Driver {
|
||||||
clear( r = 0, g = 0, b = 0, a = 1 ) {
|
clear( r = 0, g = 0, b = 0, a = 1 ) {
|
||||||
for ( let x = 0; x < this.width; x++ ) {
|
for ( let x = 0; x < this.width; x++ ) {
|
||||||
for ( let y = 0; y < this.height; y++) {
|
for ( let y = 0; y < this.height; y++) {
|
||||||
this.setPikel( x, y, r, g, b, a );
|
this.setPixel( x, y, r, g, b, a );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue