diff options
| author | Ian C <ianc@noddybox.co.uk> | 2005-12-17 00:20:47 +0000 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2005-12-17 00:20:47 +0000 |
| commit | 0129dc56ba73e43f148b779d9ff549f286e66f1d (patch) | |
| tree | fe48d488b70a2ffed88908e6bb0fdbfd74bd19a2 /hardwire.bmx | |
| parent | d3edb4bcc6f0a173e21ea3f323eb594e4615afdc (diff) | |
Improved collapsing of spaces in game map
Diffstat (limited to 'hardwire.bmx')
| -rw-r--r-- | hardwire.bmx | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/hardwire.bmx b/hardwire.bmx index 75a6a02..f1f8997 100644 --- a/hardwire.bmx +++ b/hardwire.bmx @@ -138,6 +138,8 @@ Function Menu() Local col:Int=128
Local coli=1
+ TextParticles.Clear()
+
While Not done
Cls
SetColor(col,col,255)
@@ -231,13 +233,15 @@ Function Menu() quit=True
EndIf
+ TextParticles.Draw()
+
GameGFX.large.Draw("START LEVEL ",tx1,356)
GameGFX.large.Draw(GameConfig.start_level,tx2,356,255,255,0)
GameGFX.large.CentreOn("LAST SCORE",200,500)
GameGFX.large.CentreOn("HIGH SCORE",600,500)
- GameGFX.large.CentreOn(last_score,200,520,255,255,0)
- GameGFX.large.CentreOn(GameConfig.hiscore,600,520,255,255,0)
+ GameGFX.large.CentreOn(last_score,200,520,255,col,0)
+ GameGFX.large.CentreOn(GameConfig.hiscore,600,520,255,col,0)
EndIf
Select sel
@@ -287,6 +291,8 @@ Function Menu() Flip
Wend
+ TextParticles.Clear()
+
TFadeScreen.DoFadeOut()
End Function
@@ -312,6 +318,10 @@ Function DebugCode() While Not done
Cls
+ If gm.overflow
+ GameGFX.large.Centre("OVERFLOW!",0)
+ EndIf
+
gm.Draw()
p.Draw()
|
