mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
changes to get a better link order, and to allow building a 'bare bone' scummvm executable
svn-id: r10103
This commit is contained in:
parent
f61fdef996
commit
3916b97357
@ -71,10 +71,10 @@ endif
|
||||
|
||||
# After the game specific modules follow the shared modules
|
||||
MODULES += \
|
||||
common \
|
||||
gui \
|
||||
backends \
|
||||
sound \
|
||||
common \
|
||||
backends/fs/posix \
|
||||
backends/fs/morphos \
|
||||
backends/fs/windows \
|
||||
@ -98,7 +98,7 @@ CPPFLAGS:= $(DEFINES) $(INCLUDES)
|
||||
common/engine.o: $(OBJS)
|
||||
|
||||
# HACK temporary fix to get compilation on OS X (and possibly others) working again
|
||||
OBJS:=common/engine.o $(OBJS)
|
||||
OBJS:=common/main.o common/gameDetector.o $(OBJS)
|
||||
|
||||
scummvm$(EXEEXT): $(OBJS)
|
||||
$(CXX) $(LDFLAGS) -o $@ $+ $(LIBS)
|
||||
|
@ -78,7 +78,7 @@ Engine *g_engine = 0;
|
||||
Engine::Engine(GameDetector *detector, OSystem *syst)
|
||||
: _system(syst) {
|
||||
g_engine = this;
|
||||
_mixer = new SoundMixer();
|
||||
_mixer = detector->createMixer();
|
||||
|
||||
_gameDataPath = detector->_gameDataPath;
|
||||
|
||||
@ -240,25 +240,3 @@ void checkHeap() {
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
//
|
||||
// HACK: The following is done to pull in symbols from all the engine modules here.
|
||||
// If we don't do this, all sorts of linker problems may occur.
|
||||
//
|
||||
EngineFactory _factories[] =
|
||||
{
|
||||
#ifndef DISABLE_SCUMM
|
||||
Engine_SCUMM_create,
|
||||
#endif
|
||||
#ifndef DISABLE_SCUMM
|
||||
Engine_SIMON_create,
|
||||
#endif
|
||||
#ifndef DISABLE_SCUMM
|
||||
Engine_SKY_create,
|
||||
#endif
|
||||
#ifndef DISABLE_SCUMM
|
||||
Engine_SWORD2_create,
|
||||
#endif
|
||||
0
|
||||
};
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "common/plugins.h"
|
||||
#include "common/scaler.h" // Only for gfx_modes
|
||||
#include "sound/mididrv.h"
|
||||
#include "sound/mixer.h"
|
||||
|
||||
#if defined(HAVE_CONFIG_H)
|
||||
#include "config.h"
|
||||
@ -801,6 +802,10 @@ int GameDetector::getMidiDriverType() {
|
||||
return MD_NULL;
|
||||
}
|
||||
|
||||
SoundMixer *GameDetector::createMixer() {
|
||||
return new SoundMixer();
|
||||
}
|
||||
|
||||
MidiDriver *GameDetector::createMidi() {
|
||||
int drv = getMidiDriverType();
|
||||
|
||||
|
@ -27,8 +27,9 @@
|
||||
|
||||
class Engine;
|
||||
class GameDetector;
|
||||
class OSystem;
|
||||
class MidiDriver;
|
||||
class OSystem;
|
||||
class SoundMixer;
|
||||
|
||||
/** Default sound/music volumes.
|
||||
* @todo move this to a better place.
|
||||
@ -183,6 +184,7 @@ public:
|
||||
OSystem *createSystem();
|
||||
Engine *createEngine(OSystem *system);
|
||||
|
||||
SoundMixer *createMixer();
|
||||
MidiDriver *createMidi();
|
||||
int getMidiDriverType();
|
||||
|
||||
|
@ -2,9 +2,8 @@ MODULE := common
|
||||
|
||||
MODULE_OBJS = \
|
||||
common/config-file.o \
|
||||
common/engine.o \
|
||||
common/file.o \
|
||||
common/gameDetector.o \
|
||||
common/main.o \
|
||||
common/plugins.o \
|
||||
common/scaler.o \
|
||||
common/str.o \
|
||||
|
Loading…
x
Reference in New Issue
Block a user