diff options
author | anotherguest | 2011-04-20 10:27:12 +0200 |
---|---|---|
committer | anotherguest | 2011-04-20 10:27:12 +0200 |
commit | e0478c2a9b49b8ef60203c6f0d1c29860795a01d (patch) | |
tree | 5b5fe9b959f3b674ff7955c3ba3f4062137d2555 /backends/platform | |
parent | ecf5d62a1039c770602384ab86f232ebb6813a60 (diff) | |
download | scummvm-rg350-e0478c2a9b49b8ef60203c6f0d1c29860795a01d.tar.gz scummvm-rg350-e0478c2a9b49b8ef60203c6f0d1c29860795a01d.tar.bz2 scummvm-rg350-e0478c2a9b49b8ef60203c6f0d1c29860795a01d.zip |
SYMBIAN : Updated folder names audio, added video, added M_PI define
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/symbian/AdaptAllMMPs.pl | 3 | ||||
-rw-r--r-- | backends/platform/symbian/src/portdefs.h | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/backends/platform/symbian/AdaptAllMMPs.pl b/backends/platform/symbian/AdaptAllMMPs.pl index 921f384c65..84f42d2a0b 100644 --- a/backends/platform/symbian/AdaptAllMMPs.pl +++ b/backends/platform/symbian/AdaptAllMMPs.pl @@ -111,7 +111,8 @@ ParseModule("_base", "base", \@section_empty); # now in ./TRG/ScummVM_TRG.mmp, ParseModule("_base", "common", \@section_empty); ParseModule("_base", "gui", \@section_empty, \@excludes_gui); ParseModule("_base", "graphics", \@section_empty, \@excludes_graphics); -ParseModule("_base", "sound", \@section_empty, \@excludes_snd); +ParseModule("_base", "audio", \@section_empty, \@excludes_snd); +ParseModule("_base", "video", \@section_empty); chdir("engines/"); ParseModule("_scumm", "scumm", \@sections_scumm, \@excludes_scumm ); diff --git a/backends/platform/symbian/src/portdefs.h b/backends/platform/symbian/src/portdefs.h index 1c5de2d43c..e8a620475e 100644 --- a/backends/platform/symbian/src/portdefs.h +++ b/backends/platform/symbian/src/portdefs.h @@ -35,6 +35,11 @@ #include <e32std.h> #include <math.h> +/* define pi */ +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif /* M_PI */ + #define DISABLE_COMMAND_LINE #if defined(USE_TREMOR) && !defined(USE_VORBIS) |