This commit is contained in:
Devine Lu Linvega 2019-08-01 16:46:23 +09:00
parent 8cbc113388
commit 02fe36f264

View File

@ -270,7 +270,6 @@ function Surface (ronin) {
} }
this.paste = function (copy, rect) { this.paste = function (copy, rect) {
console.log('paste')
return this.context.drawImage(copy, 0, 0, rect.w, rect.h, rect.x, rect.y, rect.w, rect.h) return this.context.drawImage(copy, 0, 0, rect.w, rect.h, rect.x, rect.y, rect.w, rect.h)
} }