mirror of
https://github.com/danbulant/pngjs
synced 2026-09-18 05:43:53 +00:00
Remove "src" parameter from PNG.prototype.bitblt
This commit is contained in:
parent
b90e811243
commit
7717852dad
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);
|
||||
return this;
|
||||
|
|
|
|||
Loading…
Reference in a new issue