]> git.sur5r.net Git - cc65/commitdiff
Classified tgi_imulround() as part of TGI API.
authorOliver Schmidt <ol.sc@web.de>
Thu, 27 Mar 2014 18:28:31 +0000 (19:28 +0100)
committerOliver Schmidt <ol.sc@web.de>
Thu, 27 Mar 2014 18:31:18 +0000 (19:31 +0100)
include/tgi.h
include/tgi/tgi-kernel.h
samples/tgidemo.c

index a43eb0cc32732f26a644dc301c8c981f67cf99ec..51d0eaebc6b8c20e953fa48cee30042335341fea 100644 (file)
@@ -275,6 +275,11 @@ unsigned __fastcall__ tgi_ioctl (unsigned char code, void* data);
  * for unknown codes or values.
  */
 
+int __fastcall__ tgi_imulround (int rhs, int lhs);
+/* Helper function for functions using sine/cosine: Multiply two values, one
+ * being an 8.8 fixed point one, and return the rounded and scaled result.
+ */
+
 
 
 /* End of tgi.h */
index 8367e4453d7f73e14bca6b4f82a10419d0670da5..bc5fdc3c6016b6289040b9fbe073f4af142a333c 100644 (file)
@@ -67,19 +67,6 @@ extern unsigned      tgi_charheight;    /* Height of scaled bitmap font */
 
 
 
-/*****************************************************************************/
-/*                                     Code                                  */
-/*****************************************************************************/
-
-
-
-int __fastcall__ tgi_imulround (int rhs, int lhs);
-/* Helper function for functions using sine/cosine: Multiply two values, one
- * being an 8.8 fixed point one, and return the rounded and scaled result.
- */
-
-
-
 /* End of tgi-kernel.h */
 #endif
 
index a7e3b10f677943d1809a89f6d2812e7e56b7bdf2..a08020640956ace65f5a0dced794620278e03411 100644 (file)
@@ -5,7 +5,6 @@
 #include <ctype.h>
 #include <modload.h>
 #include <tgi.h>
-#include <tgi/tgi-kernel.h>