Open metchebe opened 1 year ago
Good catch. The regex to clean the names likely doesn't manage for x250 -
cases:
https://github.com/RobLoach/libretro-dats/blob/master/index.js#L248-L254
// Protect against #### - Game Name (Country) -- Remove the prefixing numbers.
// Game Boy Advance only does this numbering?
if (name.includes('Game Boy Advance')) {
if (/^[0-9][0-9][0-9][0-9] - /.test(gameName)) {
gameName = gameName.substring(7)
}
}
Could likely use some tweaks in that regex.
Hello.
For some reason, a recent update has added
x###
tags to some Game Boy Advance games in the playlist, for example:x109 - Super Mario Advance 4 - Super Mario Bros. 3 (USA) (Rev 1) (Virtual Console)
which is the one I noticed. Checking the dat file it seems that the initial No-Intro number is filtered for number tags only (no x), examples:
Fixed:
Not Fixed: