aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/include
diff options
context:
space:
mode:
authorspicyjpeg <thatspicyjpeg@gmail.com>2022-12-18 15:51:16 +0100
committerGitHub <noreply@github.com>2022-12-18 15:51:16 +0100
commitd84bc4939607442e41888521939ef10908c87ce3 (patch)
treee5d0df7c6dd1cdc44c66d730fd22d3a327fc6ca6 /libpsn00b/include
parentb3fc13c36c4ed666e34e292a9ed7d45ae4f49454 (diff)
parent77306e187ef1a7ad5d3508ae9acb38edc5b68255 (diff)
downloadpsn00bsdk-d84bc4939607442e41888521939ef10908c87ce3.tar.gz
Merge branch 'Lameguy64:master' into bugfix
Diffstat (limited to 'libpsn00b/include')
-rw-r--r--libpsn00b/include/psxgte.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libpsn00b/include/psxgte.h b/libpsn00b/include/psxgte.h
index 3c1d5a4..539b79f 100644
--- a/libpsn00b/include/psxgte.h
+++ b/libpsn00b/include/psxgte.h
@@ -56,7 +56,7 @@ extern "C" {
#endif
/**
- * @brief Gets sine of angle (fixed-point, high precision version)
+ * @brief Gets sine of angle (fixed-point)
*
* @details Returns the sine of angle a.
*
@@ -66,7 +66,7 @@ extern "C" {
int isin(int a);
/**
- * @brief Gets cosine of angle (fixed-point, high precision version)
+ * @brief Gets cosine of angle (fixed-point)
*
* @details Returns the cosine of angle a.
*
@@ -76,21 +76,21 @@ int isin(int a);
int icos(int a);
/**
- * @brief Gets sine of angle (fixed-point)
+ * @brief Gets sine of angle (fixed-point, high precision version)
*
* @details Returns the sine of angle a.
*
- * @param a Angle in fixed-point format (131072 = 360 degrees)
+ * @param a Angle in fixed-point format (4194304 = 360 degrees)
* @return Sine value in 20.12 fixed-point format (4096 = 1.0).
*/
int hisin(int a);
/**
- * @brief Gets cosine of angle (fixed-point)
+ * @brief Gets cosine of angle (fixed-point, high precision version)
*
* @details Returns the cosine of angle a.
*
- * @param a Angle in fixed-point format (131072 = 360 degrees)
+ * @param a Angle in fixed-point format (4194304 = 360 degrees)
* @return Cosine value in 20.12 fixed-point format (4096 = 1.0).
*/
int hicos(int a);