diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-08-24 00:25:34 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-08-24 00:25:34 +0000 |
commit | 2afd44a7ba2c1d8b9c162ab9c6ccdfbd9f1310c0 (patch) | |
tree | 78500e65ec89fc6972d514b20f65cc022657fed7 /bitmapfont.mod | |
parent | f37162283c31f6a48dc8f2dd9e7059c741618fc9 (diff) |
Changed typenames to Blitz standard naming. Added unimplemented TVector.
Diffstat (limited to 'bitmapfont.mod')
-rw-r--r-- | bitmapfont.mod/bitmapfont.bmx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitmapfont.mod/bitmapfont.bmx b/bitmapfont.mod/bitmapfont.bmx index 67bcd1f..bcb98c5 100644 --- a/bitmapfont.mod/bitmapfont.bmx +++ b/bitmapfont.mod/bitmapfont.bmx @@ -13,7 +13,7 @@ Import brl.Basic Strict -Type BitmapFont +Type TBitmapFont Const NOCHR=95 @@ -22,8 +22,8 @@ Type BitmapFont Field width:Int[NOCHR] Field is_fixed:Int - Function Load:BitmapFont(path:String, image_flags:Int) - Local fnt:BitmapFont + Function Load:TBitmapFont(path:String, image_flags:Int) + Local fnt:TBitmapFont Local str:TStream Local magic:String Local f,x,y @@ -32,7 +32,7 @@ Type BitmapFont If (Not str) Then Return Null - fnt=New BitmapFont + fnt=New TBitmapFont magic=ReadString(str,4) |