summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
index 9a2435c..f58c4d3 100644
--- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/main.lua
@@ -20,7 +20,7 @@ function love.load()
love.window.setTitle(windowProfile.title)
button = require 'scripts.player.1.button'
- sprites = require 'scripts.sprites.sprites'
+ metaSprites = require 'scripts.meta_sprites'
character = {
bola = require 'scripts.bola.default'
@@ -55,7 +55,7 @@ function love.draw()
love.graphics.print('FPS: ' .. love.timer.getFPS(), 0, 0)
love.graphics.draw(
- sprites.bola.image,
+ metaSprites.bola.image,
quad,
character.bola.position.x,
character.bola.position.y,