summaryrefslogtreecommitdiff
path: root/entity.lua
diff options
context:
space:
mode:
Diffstat (limited to 'entity.lua')
-rw-r--r--entity.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/entity.lua b/entity.lua
index b0c146a..c85dc71 100644
--- a/entity.lua
+++ b/entity.lua
@@ -9,7 +9,7 @@ function Entity:new(x, y, width, height, physicsWidth, physicsHeight)
self.height = height
self.physicsWidth = physicsWidth or width
self.physicsHeight = physicsHeight or height
- self.texture = love.graphics.newImage("assets/missing.png")
+ self.texture = love.graphics.newImage("assets/missing8x8.png")
return self
end