diff options
author | Ian C <deathstation9000@gmail.com> | 2025-03-10 07:20:43 +0000 |
---|---|---|
committer | Ian C <deathstation9000@gmail.com> | 2025-03-10 07:20:43 +0000 |
commit | d0464bdf168564106957dbe97a33dca115f097e7 (patch) | |
tree | 1fe11efa1b9dd433682770e69607a22a02b06bc1 | |
parent | e73337a11a681af54cab8e1a186229cb85a763b6 (diff) |
Updated URL and made windowed (doesn't like 800x600 as faullscreen)
-rw-r--r-- | missile_lock.bmx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/missile_lock.bmx b/missile_lock.bmx index fc90461..0eafef6 100644 --- a/missile_lock.bmx +++ b/missile_lock.bmx @@ -24,7 +24,7 @@ Strict Framework brl.basic
Import brl.max2d
Import brl.glmax2d
-Import brl.RandomDefault
+Import brl.Random
Import noddybox.bitmapfont
Import noddybox.keysyms
@@ -47,7 +47,7 @@ Incbin "license.txt" SeedRnd(MilliSecs())
-Graphics 800,600,32
+Graphics 800,600,0
HideMouse
SetBlend(ALPHABLEND)
@@ -222,7 +222,7 @@ While Not quit GFX.font.Centre("LEVEL " + GameState.level + " COMPLETED!",200,255,255,0)
- GFX.font.Centre("BONUS " + Number.Format(added) + "!!!",400,255,255,0)
+ GFX.font.Centre("BONUS " + Number.format(added) + "!!!",400,255,255,0)
If bt
GFX.font.Centre("TIMER BONUS " + bt + "!!!",420,255,255,0)
@@ -447,7 +447,7 @@ Function Menu() EndIf
GFX.font.Centre("COPYRIGHT (C) NODDYBOX 2006",200)
- GFX.font.Centre("HTTP://WWW.NODDYBOX.CO.UK/",226)
+ GFX.font.Centre("HTTP://WWW.DEATHSTATION9000.ORG.UK/",226)
GFX.font.Centre("THANKS TO",300)
Thanks.Draw(326)
|