summaryrefslogtreecommitdiff
path: root/game.bmx
diff options
context:
space:
mode:
Diffstat (limited to 'game.bmx')
-rw-r--r--game.bmx5
1 files changed, 2 insertions, 3 deletions
diff --git a/game.bmx b/game.bmx
index 94edada..16fb3e7 100644
--- a/game.bmx
+++ b/game.bmx
@@ -115,8 +115,6 @@ Type TGame
Cls
- TextParticles.Draw()
-
GameGFX.large.Draw("SCORE",0,0,255,255,0)
GameGFX.large.Draw(score,0,20)
@@ -150,7 +148,7 @@ Type TGame
If Not gm.overflow
score:+level*2
- CreateNext((total Mod 30)=0)
+ CreateNext((total Mod 2)=0) ' 15
Else
FlushKeys()
EndIf
@@ -219,6 +217,7 @@ Type TGame
EndIf
Particles.Draw()
+ TextParticles.Draw()
If KeyHit(GameConfig.kpause) And Not gm.overflow
Pause()