From 5c62ce816b6d725ed33272f78f688e34e97e031a Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 3 Jun 2006 23:52:55 +0000 Subject: Updated GFX and added GPL license view --- global.bmx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'global.bmx') 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 -- cgit v1.2.3