Closed janerist closed 11 years ago
In the load function:
this.p.w = this.p.rows * this.p.tileH; this.p.h = this.p.cols * this.p.tileW;
I think this should be:
this.p.w = this.p.cols * this.p.tileW; this.p.h = this.p.rows * this.p.tileH;
Pew... In what file, on which line?
https://github.com/cykod/Quintus/blob/master/lib/quintus_2d.js#L168-L169
In the load function:
I think this should be: