- June 13, 2006
- 979
- 178
- Home Country
- Belgium
The patch only changes this extremely minor thing:
Is that really all there is to it? I just wondered since I thought the character tables needed fixing etc...
Code:
public TeletextPageRenderer()
{
- _isRegionalDK = (RegionInfo.CurrentRegion.Equals("DK"));
+ _isRegionalDK = (RegionInfo.CurrentRegion.TwoLetterISORegionName.Equals("DK", StringComparison.InvariantCultureIgnoreCase));
}
Is that really all there is to it? I just wondered since I thought the character tables needed fixing etc...