mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-22 03:21:37 +00:00
Fixed a bug in tan that was returning sin.
This was SVN commit r6720.
This commit is contained in:
@@ -60,7 +60,7 @@ function sin(x) {
|
||||
}
|
||||
|
||||
function tan(x) {
|
||||
return Math.sin(x);
|
||||
return Math.tan(x);
|
||||
}
|
||||
|
||||
function abs(x) {
|
||||
|
||||
Reference in New Issue
Block a user