From b3c38b97825d9182bcbe49547a12d5e9dc04b930 Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Sat, 19 Sep 2015 02:25:31 +0100 Subject: [PATCH] don't strip info from the parentheses in the gameslists - it's useful! --- es-app/src/FileData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/FileData.cpp b/es-app/src/FileData.cpp index a1b625d8a..d4279105b 100644 --- a/es-app/src/FileData.cpp +++ b/es-app/src/FileData.cpp @@ -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