mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
ENGINES: Fix mess with the mismatched engine ids between engine/detection plugins
This commit is contained in:
parent
40facbe6d3
commit
a138c0b646
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -39,7 +39,7 @@ namespace TwinE {
|
||||
class TwinEMetaEngine : public AdvancedMetaEngine {
|
||||
public:
|
||||
const char *getName() const override {
|
||||
return "TwinE";
|
||||
return "twine";
|
||||
}
|
||||
|
||||
int getMaximumSaveSlot() const override {
|
||||
|
Loading…
x
Reference in New Issue
Block a user