1
0
mirror of https://github.com/cc65/cc65.git synced 2024-05-31 22:41:32 +00:00

Classified tgi_imulround() as part of TGI API.

This commit is contained in:
Oliver Schmidt 2014-03-27 19:28:31 +01:00
parent eaf4c8ce6b
commit c6ee9ac034
3 changed files with 5 additions and 14 deletions

View 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 */

View 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

View File

@ -5,7 +5,6 @@
#include <ctype.h>
#include <modload.h>
#include <tgi.h>
#include <tgi/tgi-kernel.h>