]> git.sur5r.net Git - cc65/commitdiff
Declaration of tgi_settextdir() added.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 31 Jul 2011 22:17:21 +0000 (22:17 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 31 Jul 2011 22:17:21 +0000 (22:17 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5101 b7a2c559-68d2-44c3-8de9-860c34a00d81

asminc/tgi-kernel.inc
include/tgi.h

index 15a32e8bfaea30e973cf41ad815b169df6e4644e..6eabe9a3b0eb0f5ed8a63b652a5830192e5d31dc 100644 (file)
@@ -224,6 +224,7 @@ TGI_CLIP_TOP            = $08
         .global _tgi_setdrawpage
         .global _tgi_setpalette
         .global _tgi_setpixel
+        .global _tgi_settextdir
         .global _tgi_settextscale
         .global _tgi_settextstyle
         .global _tgi_setviewpage
index bd312dc633d84615ee82826c2d65b5cdb770b9e0..bfb5b861b5528993a5540fc302addbd0301a4031 100644 (file)
@@ -228,6 +228,11 @@ void __fastcall__ tgi_pieslice (int x, int y, unsigned char rx, unsigned char ry
 void __fastcall__ tgi_bar (int x1, int y1, int x2, int y2);
 /* Draw a bar (a filled rectangle) using the current color. */
 
+void __fastcall__ tgi_settextdir (unsigned char dir);
+/* Set the direction for text output. dir is one of the TGI_TEXT_XXX
+ * constants.
+ */
+
 void __fastcall__ tgi_settextscale (unsigned width, unsigned height);
 /* Set the scaling for text output. The scaling factors for width and height
  * are 8.8 fixed point values. This means that $100 = 1 $200 = 2 etc.