]> git.sur5r.net Git - cc65/blobdiff - include/cc65.h
Fixed the return types of the sine/cosine functions. Added comments.
[cc65] / include / cc65.h
index 557fd7fe66f6b7e78219aa3c41cf85e17bee6036..8a555080399338bcc974db537ae01334732d1b2b 100644 (file)
 
 
 
-extern unsigned __fastcall__ cc65_sin (unsigned x);
+extern int __fastcall__ cc65_sin (unsigned x);
 /* Return the sine of the argument, which must be in range 0..360. The result
  * is in 8.8 fixed point format, which means that 1.0 = $100 and -1.0 = $FF00.
  */
 
-extern unsigned __fastcall__ cc65_cos (unsigned x);
+extern int __fastcall__ cc65_cos (unsigned x);
 /* Return the cosine of the argument, which must be in range 0..360. The result
  * is in 8.8 fixed point format, which means that 1.0 = $100 and -1.0 = $FF00.
  */