mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
TITANIC: move debug channels to metaEngineDetection
This commit is contained in:
parent
bea68bb58c
commit
8905a28f89
@ -26,6 +26,15 @@
|
||||
#include "engines/advancedDetector.h"
|
||||
|
||||
#include "titanic/detection.h"
|
||||
#include "titanic/debugger.h"
|
||||
|
||||
static const DebugChannelDef debugFlagList[] = {
|
||||
{Titanic::kDebugCore, "core", "Core engine debug level"},
|
||||
{Titanic::kDebugScripts, "scripts", "Game scripts"},
|
||||
{Titanic::kDebugGraphics, "graphics", "Graphics handling"},
|
||||
{Titanic::kDebugStarfield, "starfield", "Starfield logic"},
|
||||
DEBUG_CHANNEL_END
|
||||
};
|
||||
|
||||
static const PlainGameDescriptor TitanicGames[] = {
|
||||
{"titanic", "Starship Titanic"},
|
||||
@ -51,6 +60,10 @@ public:
|
||||
const char *getOriginalCopyright() const override {
|
||||
return "Starship Titanic (C) The Digital Village";
|
||||
}
|
||||
|
||||
const DebugChannelDef *getDebugChannels() const override {
|
||||
return debugFlagList;
|
||||
}
|
||||
};
|
||||
|
||||
REGISTER_PLUGIN_STATIC(TITANIC_DETECTION, PLUGIN_TYPE_ENGINE_DETECTION, TitanicMetaEngineDetection);
|
||||
|
@ -69,12 +69,6 @@ TitanicEngine::TitanicEngine(OSystem *syst, const TitanicGameDescription *gameDe
|
||||
_script = nullptr;
|
||||
CMusicRoom::_musicHandler = nullptr;
|
||||
_loadSaveSlot = -1;
|
||||
|
||||
// Set up debug channels
|
||||
DebugMan.addDebugChannel(kDebugCore, "core", "Core engine debug level");
|
||||
DebugMan.addDebugChannel(kDebugScripts, "scripts", "Game scripts");
|
||||
DebugMan.addDebugChannel(kDebugGraphics, "graphics", "Graphics handling");
|
||||
DebugMan.addDebugChannel(kDebugStarfield, "starfield", "Starfield logic");
|
||||
}
|
||||
|
||||
TitanicEngine::~TitanicEngine() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user