]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug (wrong order of variables).
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Nov 2009 21:53:22 +0000 (21:53 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Nov 2009 21:53:22 +0000 (21:53 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4415 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/tgi/tgi-kernel.s

index fff88697fea46d632363a3128ac79273f3040718..fa926895f4eead48c0f15545d925a86e9f742278 100644 (file)
@@ -25,14 +25,14 @@ _tgi_color:         .res    1           ; Current drawing color
 _tgi_textdir:       .res    1           ; Current text direction
 ; The following two store an 8.8 fixed point value in the first two bytes,
 ; and a rounded integer value in the third byte. The latter is passed to the
-; driver to scale the bitmap font. The variables are expected to be in 
+; driver to scale the bitmap font. The variables are expected to be in
 ; this order and adjacent.
 _tgi_textmagw:      .res    3           ; Text magnification for the width
 _tgi_textmagh:      .res    3           ; Text magnification for the height
-                          
+
 ; The following two must also be in exactly this order
-_tgi_charheight:    .res    1           ; Char height of system font
 _tgi_charwidth:     .res    1           ; Char width of system font
+_tgi_charheight:    .res    1           ; Char height of system font
 
 ; The following variables are copied from the driver header for faster access
 ; fontwidth and fontheight are expected to be in order and adjacent.