aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorChris Apers2004-10-06 10:14:31 +0000
committerChris Apers2004-10-06 10:14:31 +0000
commit2ca4529bbad0f92f1567309ec68281f19ed57c13 (patch)
tree3129303adcfbad785c710bd3f303d1519b0f46b9 /scumm
parentd76a37588946865bdcc6fad49e9118ed8d07ea30 (diff)
downloadscummvm-rg350-2ca4529bbad0f92f1567309ec68281f19ed57c13.tar.gz
scummvm-rg350-2ca4529bbad0f92f1567309ec68281f19ed57c13.tar.bz2
scummvm-rg350-2ca4529bbad0f92f1567309ec68281f19ed57c13.zip
Use common PI value instead
svn-id: r15435
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v72he.cpp4
-rw-r--r--scumm/script_v90he.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 529bb3fd2d..e9d3aab82c 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -1869,13 +1869,13 @@ void ScummEngine_v72he::o72_kernelGetFunctions() {
break;
case 1001:
{
- double a = args[1] * M_PI / 180.;
+ double a = args[1] * PI / 180.;
push((int)(sin(a) * 100000));
}
break;
case 1002:
{
- double a = args[1] * M_PI / 180.;
+ double a = args[1] * PI / 180.;
push((int)(cos(a) * 100000));
}
break;
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp
index 99aa154c7d..e232cc9ea5 100644
--- a/scumm/script_v90he.cpp
+++ b/scumm/script_v90he.cpp
@@ -411,12 +411,12 @@ void ScummEngine_v90he::o90_getGT() {
}
void ScummEngine_v90he::o90_sin() {
- double a = pop() * M_PI / 180.;
+ double a = pop() * PI / 180.;
push((int)(sin(a) * 100000));
}
void ScummEngine_v90he::o90_cos() {
- double a = pop() * M_PI / 180.;
+ double a = pop() * PI / 180.;
push((int)(cos(a) * 100000));
}