mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-29 09:35:39 +00:00
Removed an unnecessary metadata name check in FileData.
This commit is contained in:
parent
a54d6a5568
commit
15cb3a0525
|
@ -47,22 +47,19 @@ FileData::FileData(FileType type,
|
||||||
, mDeletionFlag {false}
|
, mDeletionFlag {false}
|
||||||
{
|
{
|
||||||
// Metadata needs at least a name field (since that's what getName() will return).
|
// Metadata needs at least a name field (since that's what getName() will return).
|
||||||
if (metadata.get("name").empty()) {
|
if ((system->hasPlatformId(PlatformIds::ARCADE) ||
|
||||||
if ((system->hasPlatformId(PlatformIds::ARCADE) ||
|
system->hasPlatformId(PlatformIds::SNK_NEO_GEO)) &&
|
||||||
system->hasPlatformId(PlatformIds::SNK_NEO_GEO)) &&
|
metadata.getType() != FOLDER_METADATA) {
|
||||||
metadata.getType() != FOLDER_METADATA) {
|
// If it's a MAME or Neo Geo game, expand the game name accordingly.
|
||||||
// If it's a MAME or Neo Geo game, expand the game name accordingly.
|
metadata.set("name", MameNames::getInstance().getCleanName(getCleanName()));
|
||||||
metadata.set("name", MameNames::getInstance().getCleanName(getCleanName()));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (metadata.getType() == FOLDER_METADATA && Utils::FileSystem::isHidden(mPath)) {
|
|
||||||
metadata.set("name", Utils::FileSystem::getFileName(mPath));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
metadata.set("name", getDisplayName());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
if (metadata.getType() == FOLDER_METADATA && Utils::FileSystem::isHidden(mPath))
|
||||||
|
metadata.set("name", Utils::FileSystem::getFileName(mPath));
|
||||||
|
else
|
||||||
|
metadata.set("name", getDisplayName());
|
||||||
|
}
|
||||||
|
|
||||||
mSystemName = system->getName();
|
mSystemName = system->getName();
|
||||||
metadata.resetChangedFlag();
|
metadata.resetChangedFlag();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue