From a8d96a30c0f5a7f434c0fb9e0d79f9aa7e1fdb19 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 2 Mar 2006 07:15:25 +0000 Subject: [PATCH] fix "range" keyword --- stepmania/src/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Font.cpp b/stepmania/src/Font.cpp index 57d994153a..eb5894ddee 100644 --- a/stepmania/src/Font.cpp +++ b/stepmania/src/Font.cpp @@ -484,7 +484,7 @@ void Font::LoadFontPageSettings( FontPageSettings &cfg, IniFile &ini, const RStr * range Unicode #3041-3094=0 */ vector asMatches; - static Regex parse("^RANGE ([A-Z\\-]+)( ?#([0-9A-F]+)-([0-9A-F]+))?$"); + static Regex parse("^RANGE ([A-Z0-9\\-]+)( ?#([0-9A-F]+)-([0-9A-F]+))?$"); bool bMatch = parse.Compare( sName, asMatches ); ASSERT( asMatches.size() == 4 ); /* 4 parens */