aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian/AdaptAllMMPs.pl
diff options
context:
space:
mode:
authorLars Persson2009-02-02 19:31:35 +0000
committerLars Persson2009-02-02 19:31:35 +0000
commit08f7d0ac1abbc7576b194bc08afbbe23d1805d4d (patch)
tree444df073b5d47e568a455429517c6fd34a7d04ad /backends/platform/symbian/AdaptAllMMPs.pl
parenteb5ec2369f5aac4269bb4ea561a5eaf7ae491417 (diff)
downloadscummvm-rg350-08f7d0ac1abbc7576b194bc08afbbe23d1805d4d.tar.gz
scummvm-rg350-08f7d0ac1abbc7576b194bc08afbbe23d1805d4d.tar.bz2
scummvm-rg350-08f7d0ac1abbc7576b194bc08afbbe23d1805d4d.zip
Missed script update for future SAGA2 engine
svn-id: r36204
Diffstat (limited to 'backends/platform/symbian/AdaptAllMMPs.pl')
-rw-r--r--backends/platform/symbian/AdaptAllMMPs.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/symbian/AdaptAllMMPs.pl b/backends/platform/symbian/AdaptAllMMPs.pl
index 9d843d80b9..c0be1369ff 100644
--- a/backends/platform/symbian/AdaptAllMMPs.pl
+++ b/backends/platform/symbian/AdaptAllMMPs.pl
@@ -66,6 +66,7 @@ Preparing to update all the Symbian MMP project files with objects from module.m
# some modules.mk files have #ifndef ENABLE_XXXX blocks:
my @section_empty = (""); # section standard: no #ifdef's in module.mk files
my @sections_scumm = ("", "ENABLE_SCUMM_7_8", "ENABLE_HE"); # special sections for engine SCUMM
+my @sections_saga = ("", "ENABLE_IHNM", "ENABLE_SAGA2"); # special sections for engine SAGA
# files excluded from build, case insensitive, will be matched in filename string only
@@ -111,7 +112,7 @@ ParseModule("_queen", "queen", \@section_empty);
ParseModule("_agos", "agos", \@section_empty);
ParseModule("_sky", "sky", \@section_empty);
ParseModule("_gob", "gob", \@section_empty);
-ParseModule("_saga", "saga", \@section_empty);
+ParseModule("_saga", "saga", \@sections_saga);
ParseModule("_kyra", "kyra", \@section_empty);
ParseModule("_sword1", "sword1", \@section_empty);
ParseModule("_sword2", "sword2", \@section_empty);