mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-11 13:45:25 +00:00
Missed script update for future SAGA2 engine
svn-id: r36204
This commit is contained in:
parent
eb5ec2369f
commit
08f7d0ac1a
@ -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);
|
||||
|
@ -8,4 +8,5 @@ PRJ_MMPFILES
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
gnumakefile icons.mk
|
||||
.\ScummVM_A0000658_S60v3.mmp
|
||||
.\ScummVM_S60v3.mmp
|
||||
|
@ -68,7 +68,7 @@ END
|
||||
|
||||
MACRO S60
|
||||
MACRO S60V3
|
||||
|
||||
MACRO SECOND_EXE
|
||||
ALWAYS_BUILD_AS_ARM
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
@ -7,5 +7,5 @@ PRJ_MMPFILES
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
|
||||
.\ScummVM_A0000658_UIQ3.mmp
|
||||
.\ScummVM_UIQ3.mmp
|
||||
|
@ -105,7 +105,6 @@ SOURCE backends\events\default\default-events.cpp
|
||||
SOURCE backends\timer\default\default-timer.cpp
|
||||
SOURCE backends\saves\savefile.cpp
|
||||
SOURCE backends\saves\default\default-saves.cpp
|
||||
SOURCE backends\saves\compressed\compressed-saves.cpp
|
||||
SOURCE engines\engine.cpp
|
||||
SOURCE engines\dialogs.cpp
|
||||
SOURCE engines\game.cpp
|
||||
|
@ -49,6 +49,18 @@ SOURCEPATH ..\..\..\..\engines\saga
|
||||
|
||||
//STOP_AUTO_OBJECTS_SAGA_//
|
||||
|
||||
//START_AUTO_OBJECTS_SAGA_ENABLE_IHNM//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_SAGA_ENABLE_IHNM//
|
||||
|
||||
//START_AUTO_OBJECTS_SAGA_ENABLE_SAGA2//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_SAGA_ENABLE_SAGA2//
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\..\engines
|
||||
|
@ -23,7 +23,11 @@
|
||||
#ifndef ScummHRH
|
||||
#define ScummHRH
|
||||
#if defined (UIQ3) || defined (S60V3)
|
||||
#ifdef SECOND_EXE
|
||||
#define ScummUid 0xA0000658
|
||||
#else
|
||||
#define ScummUid 0xA0000657
|
||||
#endif
|
||||
#else
|
||||
#define ScummUid 0x101f9b57
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user