summaryrefslogtreecommitdiff
path: root/game.bmx
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-11-30 00:21:31 +0000
committerIan C <ianc@noddybox.co.uk>2005-11-30 00:21:31 +0000
commit2432acd3b0cc49fb71cfee5b32e14e0eac773619 (patch)
tree3170d7268f9d381d36fb4c2c01200805e193bc1b /game.bmx
parent991c2de75c4d8d78e135d38eae2dfbd09ac0573a (diff)
Updates
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()