summaryrefslogtreecommitdiffstats
path: root/tests/resources/userdiff/expected/driver/diff.javascript
blob: 4cefe5cff67766681c702c6f0cd0ee1d4f6084e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
diff --git a/files/file.javascript b/files/file.javascript
index 0965b37..5391797 100644
--- a/files/file.javascript
+++ b/files/file.javascript
@@ -4,4 +4,3 @@ function(require, exports, module)
   var Key = require("./key")
-    , Direction = require("./direction")
-    , Image = require("./image");
+    , Direction = require("./direction");
 
@@ -16,4 +15,4 @@ function Player(game)
 
-    this.pixelX = 0;
-    this.pixelY = 0;
+    this.pixelX = 10;
+    this.pixelY = 10;
 
@@ -82,3 +81,3 @@ Player.prototype.moveUp = function()
   Player.prototype.moveLeft = function() {
-    this.x -= 1;
+    this.x -= 5;
     this.direction = Direction.LEFT;
@@ -106,3 +105,3 @@ Player.prototype.draw = function(context)
 
-    context.drawImage(this.image.data, offsetX, offsetY, 32, 48, this.pixelX, this.pixelY - 16, 32, 48);
+    context.drawImage(this.image.data, offsetX, offsetY, 32, 48, this.pixelX, this.pixelY, 32, 48);
   };