mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
GRIM: move debug flags to metaEngineDetection
This commit is contained in:
parent
b41b540a03
commit
dd14b7b34a
@ -27,26 +27,6 @@
|
||||
namespace Grim {
|
||||
|
||||
void Debug::registerDebugChannels() {
|
||||
DebugMan.addDebugChannel(Info, "info", "");
|
||||
DebugMan.addDebugChannel(Warning, "warning", "");
|
||||
DebugMan.addDebugChannel(Error, "error", "");
|
||||
DebugMan.addDebugChannel(Engine, "engine", "");
|
||||
DebugMan.addDebugChannel(Lua, "lua", "");
|
||||
DebugMan.addDebugChannel(Bitmaps, "bitmaps", "");
|
||||
DebugMan.addDebugChannel(Models, "models", "");
|
||||
DebugMan.addDebugChannel(Actors, "actors", "");
|
||||
DebugMan.addDebugChannel(Costumes, "costumes", "");
|
||||
DebugMan.addDebugChannel(Chores, "chores", "");
|
||||
DebugMan.addDebugChannel(Fonts, "fonts", "");
|
||||
DebugMan.addDebugChannel(Keyframes, "keyframes", "");
|
||||
DebugMan.addDebugChannel(Movie, "movie", "");
|
||||
DebugMan.addDebugChannel(Sound, "sound", "");
|
||||
DebugMan.addDebugChannel(Scripts, "scripts", "");
|
||||
DebugMan.addDebugChannel(Sets, "sets", "");
|
||||
DebugMan.addDebugChannel(TextObjects, "textobjects", "");
|
||||
DebugMan.addDebugChannel(Patchr, "patchr", "");
|
||||
DebugMan.addDebugChannel(Lipsync, "lipsync", "");
|
||||
DebugMan.addDebugChannel(Sprites, "sprites", "");
|
||||
}
|
||||
|
||||
bool Debug::isChannelEnabled(DebugChannel chan) {
|
||||
|
@ -24,6 +24,31 @@
|
||||
#include "engines/grim/detection.h"
|
||||
|
||||
#include "common/translation.h"
|
||||
#include "engines/grim/debug.h"
|
||||
|
||||
static const DebugChannelDef debugFlagList[] = {
|
||||
{Grim::Debug::Info, "info", ""},
|
||||
{Grim::Debug::Warning, "warning", ""},
|
||||
{Grim::Debug::Error, "error", ""},
|
||||
{Grim::Debug::Engine, "engine", ""},
|
||||
{Grim::Debug::Lua, "lua", ""},
|
||||
{Grim::Debug::Bitmaps, "bitmaps", ""},
|
||||
{Grim::Debug::Models, "models", ""},
|
||||
{Grim::Debug::Actors, "actors", ""},
|
||||
{Grim::Debug::Costumes, "costumes", ""},
|
||||
{Grim::Debug::Chores, "chores", ""},
|
||||
{Grim::Debug::Fonts, "fonts", ""},
|
||||
{Grim::Debug::Keyframes, "keyframes", ""},
|
||||
{Grim::Debug::Movie, "movie", ""},
|
||||
{Grim::Debug::Sound, "sound", ""},
|
||||
{Grim::Debug::Scripts, "scripts", ""},
|
||||
{Grim::Debug::Sets, "sets", ""},
|
||||
{Grim::Debug::TextObjects, "textobjects", ""},
|
||||
{Grim::Debug::Patchr, "patchr", ""},
|
||||
{Grim::Debug::Lipsync, "lipsync", ""},
|
||||
{Grim::Debug::Sprites, "sprites", ""},
|
||||
DEBUG_CHANNEL_END
|
||||
};
|
||||
|
||||
namespace Grim {
|
||||
|
||||
@ -598,6 +623,10 @@ public:
|
||||
return "LucasArts GrimE Games (C) LucasArts";
|
||||
}
|
||||
|
||||
const DebugChannelDef *getDebugChannels() const override {
|
||||
return debugFlagList;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
} // End of namespace Grim
|
||||
|
@ -186,8 +186,6 @@ GrimEngine::GrimEngine(OSystem *syst, uint32 gameFlags, GrimGameType gameType, C
|
||||
SearchMan.addSubDirectoryMatching(gameDataDir, "credits");
|
||||
SearchMan.addSubDirectoryMatching(gameDataDir, "widescreen");
|
||||
|
||||
Debug::registerDebugChannels();
|
||||
|
||||
|
||||
//Remastered:
|
||||
if (getGameFlags() & ADGF_REMASTERED) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user