NEVERHOOD: Remove "Chronicles" from detection name

"Chronicles" is used on the title screen but never on other media
This commit is contained in:
Walter Agazzi 2022-12-28 12:33:50 +01:00 committed by Filippos Karapetis
parent 0d7b662077
commit d6100aa891

View File

@ -28,7 +28,7 @@
#include "neverhood/detection.h"
static const PlainGameDescriptor neverhoodGames[] = {
{"neverhood", "The Neverhood Chronicles"},
{"neverhood", "The Neverhood"},
{nullptr, nullptr}
};
@ -142,11 +142,11 @@ public:
}
const char *getEngineName() const override {
return "The Neverhood Chronicles";
return "The Neverhood";
}
const char *getOriginalCopyright() const override {
return "The Neverhood Chronicles (C) The Neverhood, Inc.";
return "The Neverhood (C) The Neverhood, Inc.";
}
};