summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-12-11 01:08:16 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-12-11 01:09:17 -0300
commit5d954dbb24fee12215c713aad893361777c8bd59 (patch)
tree5622f244b59ba16150ebaa9ae4ccdabb03a13078 /src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua
parent1835b872037f3966dfd03320082240412effb42b (diff)
Remove modularizing since it is under testing for now
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua
deleted file mode 100644
index efb2652..0000000
--- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/draw/fps.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-draw.fps = function()
- local currentTime = love.timer.getTime()
- if nextTime <= currentTime then
- nextTime = currentTime
- return
- end
- love.timer.sleep(nextTime - currentTime)
-end