Fix strip scene dates in DB variant

This commit is contained in:
Matt Nadareski
2025-01-13 00:02:56 -05:00
parent b62792d802
commit 208f4f64a9
2 changed files with 11 additions and 24 deletions

View File

@@ -1023,7 +1023,7 @@ namespace SabreTools.DatFiles
internal void StripSceneDatesFromItems()
{
// Set the regex pattern to use
string pattern = @"([0-9]{2}\.[0-9]{2}\.[0-9]{2}-)(.*?-.*?)";
const string pattern = @"([0-9]{2}\.[0-9]{2}\.[0-9]{2}-)(.*?-.*?)";
// Now process all of the roms
#if NET452_OR_GREATER || NETCOREAPP