summaryrefslogtreecommitdiff
path: root/global.bmx
diff options
context:
space:
mode:
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