diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
| -rw-r--r-- | scumm/script_v72he.cpp | 4 |
1 files changed, 2 insertions, 2 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; |
