Merge pull request #28 from citra-emu/j-selby-patch-1

Fix typo
This commit is contained in:
Flame Sage 2017-06-19 08:07:23 -04:00 committed by GitHub
commit 7de0935ac7
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ function processGame(game) {
let trimmedTitle = model.title.toLowerCase();
toTrim.forEach(trim => {
if (trimmedTitle.startsWith(trim + " ")) {
trimmedTitle = trimmedTitle.substr(trim.length + 2);
trimmedTitle = trimmedTitle.substr(trim.length + 1);
}
});