ENGINES: Fix mess with the mismatched engine ids between engine/detection plugins

This commit is contained in:
Eugene Sandulenko 2021-04-14 14:42:38 +02:00
parent 40facbe6d3
commit a138c0b646
No known key found for this signature in database
GPG Key ID: 014D387312D34F08
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ namespace Grim {
class GrimMetaEngine : public AdvancedMetaEngine {
public:
const char *getName() const override {
return "Grim";
return "grim";
}
Common::Error createInstance(OSystem *syst, Engine **engine) const override {

View File

@ -217,7 +217,7 @@ bool ScummEngine::isMacM68kIMuse() const {
using namespace Scumm;
const char *ScummMetaEngine::getName() const {
return "Scumm";
return "scumm";
}
bool ScummMetaEngine::hasFeature(MetaEngineFeature f) const {

View File

@ -39,7 +39,7 @@ namespace TwinE {
class TwinEMetaEngine : public AdvancedMetaEngine {
public:
const char *getName() const override {
return "TwinE";
return "twine";
}
int getMaximumSaveSlot() const override {