diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-10-05 00:11:51 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-10-05 00:11:51 +0000 |
commit | 09de3cf13e2d46d2c6e3c1a89b42e22d159a3037 (patch) | |
tree | ae4e30720ac0971b506ab6fbc500f147d0870d28 | |
parent | 685bc09307bdf76b52feba2d371c73c5fe96eb9e (diff) |
Made level files little endian
-rw-r--r-- | level.bmx | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -244,6 +244,8 @@ Type TLevelSet TLevelException.Error(file + " couldn't be opened") EndIf + s=LittleEndianStream(s) + Local o:TLevelSet=New TLevelSet Local c:Int @@ -274,6 +276,8 @@ Type TLevelSet Return False EndIf + s=LittleEndianStream(s) + s.WriteLine(MAGIC) s.WriteLine(CurrentDate()+CurrentTime()) s.WriteLine(name) |