TSAGE: R2R - Make the demo start

This commit is contained in:
Strangerke 2014-01-01 16:08:21 +01:00
parent ce91844f79
commit 92b8dbf1ad

View File

@ -39,10 +39,12 @@ TSageEngine::TSageEngine(OSystem *system, const tSageGameDescription *gameDesc)
g_vm = this;
DebugMan.addDebugChannel(kRingDebugScripts, "scripts", "Scripts debugging");
_debugger = nullptr;
if (g_vm->getGameID() == GType_Ringworld) {
if (g_vm->getFeatures() & GF_DEMO)
_debugger = new DemoDebugger();
else if (g_vm->getGameID() == GType_Ringworld)
else
_debugger = new RingworldDebugger();
}
else if (g_vm->getGameID() == GType_BlueForce)
_debugger = new BlueForceDebugger();
else if (g_vm->getGameID() == GType_Ringworld2)
@ -76,16 +78,16 @@ void TSageEngine::initialize() {
// Set up the resource manager
g_resourceManager = new ResourceManager();
if (g_vm->getGameID() == GType_Ringworld) {
if (g_vm->getFeatures() & GF_DEMO) {
// Add the single library file associated with the demo
g_resourceManager->addLib(getPrimaryFilename());
g_globals = new Globals();
} else if (g_vm->getGameID() == GType_Ringworld) {
} else {
g_resourceManager->addLib("RING.RLB");
g_resourceManager->addLib("TSAGE.RLB");
g_globals = new Globals();
}
} else if (g_vm->getGameID() == GType_BlueForce) {
g_resourceManager->addLib("BLUE.RLB");
if (g_vm->getFeatures() & GF_FLOPPY) {