mirror of
https://github.com/danbulant/pngjs
synced 2026-07-08 04:30:33 +00:00
Merge pull request #29 from elisee/patch-2
Remove accidentally-added "src" parameter from PNG.prototype.bitblt
This commit is contained in:
commit
b5105432b3
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ PNG.bitblt = function(src, dst, srcX, srcY, width, height, deltaX, deltaY) { //
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
PNG.prototype.bitblt = function(src, dst, srcX, srcY, width, height, deltaX, deltaY) { // eslint-disable-line max-params
|
PNG.prototype.bitblt = function(dst, srcX, srcY, width, height, deltaX, deltaY) { // eslint-disable-line max-params
|
||||||
|
|
||||||
PNG.bitblt(this, dst, srcX, srcY, width, height, deltaX, deltaY);
|
PNG.bitblt(this, dst, srcX, srcY, width, height, deltaX, deltaY);
|
||||||
return this;
|
return this;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue