diff --git a/exec/load/frame.js b/exec/load/frame.js
index 43f99bba8f47edb7dd3625b49a22f8146fce85cb..daa2240519770918fabafcbc323610e976e30aca 100644
--- a/exec/load/frame.js
+++ b/exec/load/frame.js
@@ -1228,7 +1228,7 @@ function Canvas(frame,display) {
 			return undefined;
 		if(xpos >= this.frame.width || ypos >= this.frame.height)
 			return undefined;
-		if(this.frame.transparent && this.frame.getData(xpos,ypos).ch == undefined)
+		if(this.frame.transparent && this.frame.getData(xpos,ypos,true).ch == undefined)
 			return undefined;
 		return true;
 	}