fix zoom etc

beta.r3js.org
-=yb4f310 2017-11-19 19:45:51 +01:00
parent 6d137b12eb
commit 208c360420
2 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
// COMPILE TIME DEFINITIONS (Generated via gulp)
var __DATE__ = "Sun Nov 19 2017 19:43:14 GMT+0100 (CET)";
var __DATE__ = "Sun Nov 19 2017 19:45:37 GMT+0100 (CET)";
// END COMPILE TIME DEFINITIONS
/**
@ -28272,11 +28272,11 @@ GameLib.System.Input.prototype.onTouchMove = function (event) {
}
if (event.changedTouches[0].pageY < event.changedTouches[1].pageY) {
bottomTouch = this.touches[event.changedTouches[0].identifier];
topTouch = this.touches[event.changedTouches[1].identifier];
} else {
bottomTouch = this.touches[event.changedTouches[1].identifier];
topTouch = this.touches[event.changedTouches[0].identifier];
} else {
bottomTouch = this.touches[event.changedTouches[0].identifier];
topTouch = this.touches[event.changedTouches[1].identifier];
}
}