summaryrefslogtreecommitdiff
path: root/global.bmx
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2006-06-03 23:52:55 +0000
committerIan C <ianc@noddybox.co.uk>2006-06-03 23:52:55 +0000
commit5c62ce816b6d725ed33272f78f688e34e97e031a (patch)
tree3a63b7cecf5aa27ddbb8358fa6e89aceb1cc6ac9 /global.bmx
parent7e1b462b0f9b04739f94a20945fe687ec3c32c24 (diff)
Updated GFX and added GPL license view
Diffstat (limited to 'global.bmx')
-rw-r--r--global.bmx6
1 files changed, 5 insertions, 1 deletions
diff --git a/global.bmx b/global.bmx
index b120af7..e953197 100644
--- a/global.bmx
+++ b/global.bmx
@@ -95,7 +95,7 @@ Type GFX
MidHandleImage(asteroid)
fireball=SafeLoadImage("incbin::GFX/fireball.png",FILTEREDIMAGE)
- SetImageHandle(fireball,7,7)
+ SetImageHandle(fireball,15,15)
End Function
End Type
@@ -105,6 +105,7 @@ Type GameConfig
Global kpause:Int
Global kthrust:Int
Global hiscore:Int
+ Global accepted:Int
Function Load()
Local s:TStream=ReadStream("mlock.config")
@@ -115,6 +116,7 @@ Type GameConfig
kthrust=KEY_SPACE
kpause=KEY_P
hiscore=0
+ accepted=False
Return
EndIf
@@ -125,6 +127,7 @@ Type GameConfig
kthrust=s.ReadInt()
kpause=s.ReadInt()
hiscore=s.ReadInt()
+ accepted=s.ReadInt()
s.Close()
End Function
@@ -143,6 +146,7 @@ Type GameConfig
s.WriteInt(kthrust)
s.WriteInt(kpause)
s.WriteInt(hiscore)
+ s.WriteInt(accepted)
s.Close()
End Function