Merge pull request #5 from RetroPie/keep_parentheses

don't strip info from the parentheses in the gameslists - it's useful!
This commit is contained in:
Jools Wills 2015-09-19 02:27:34 +01:00
commit 64a208ff59

View file

@ -66,7 +66,7 @@ std::string FileData::getCleanName() const
if(mSystem && mSystem->hasPlatformId(PlatformIds::ARCADE) || mSystem->hasPlatformId(PlatformIds::NEOGEO))
stem = PlatformIds::getCleanMameName(stem.c_str());
return removeParenthesis(stem);
return stem;
}
const std::string& FileData::getThumbnailPath() const