drawLine needs to use withPixel; colors are correct in asteroids now

This commit is contained in:
Donovan Preston 2014-08-06 21:59:03 -04:00
Родитель ca78a269d7
Коммит 7f9ac92b65
1 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -531,12 +531,14 @@
dx = x2 - x1, dy = y2 - y1;
withClip(_this, x1, y1, function(x, y) {
withSize(dx, dy, function(dx, dy) {
var ctx = MIDP.Context2D;
ctx.beginPath();
ctx.moveTo(x, y);
ctx.lineTo(x + dx, y + dy);
ctx.stroke();
ctx.closePath();
withPixel(_this, function() {
var ctx = MIDP.Context2D;
ctx.beginPath();
ctx.moveTo(x, y);
ctx.lineTo(x + dx, y + dy);
ctx.stroke();
ctx.closePath();
});
});
});
}