diff -r 813d8bc3192f -r fa9dfbfc4145 Hardware/LPC/F718XX.cs --- a/Hardware/LPC/F718XX.cs Sun Aug 08 13:57:26 2010 +0000 +++ b/Hardware/LPC/F718XX.cs Thu Aug 12 20:53:27 2010 +0000 @@ -37,6 +37,7 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.Text; namespace OpenHardwareMonitor.Hardware.LPC { @@ -84,7 +85,8 @@ r.AppendLine("LPC " + this.GetType().Name); r.AppendLine(); - r.Append("Base Adress: 0x"); r.AppendLine(address.ToString("X4")); + r.Append("Base Adress: 0x"); + r.AppendLine(address.ToString("X4", CultureInfo.InvariantCulture)); r.AppendLine(); if (!WinRing0.WaitIsaBusMutex(100)) @@ -95,10 +97,13 @@ r.AppendLine(" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F"); r.AppendLine(); for (int i = 0; i <= 0xF; i++) { - r.Append(" "); r.Append((i << 4).ToString("X2")); r.Append(" "); + r.Append(" "); + r.Append((i << 4).ToString("X2", CultureInfo.InvariantCulture)); + r.Append(" "); for (int j = 0; j <= 0xF; j++) { r.Append(" "); - r.Append(ReadByte((byte)((i << 4) | j)).ToString("X2")); + r.Append(ReadByte((byte)((i << 4) | j)).ToString("X2", + CultureInfo.InvariantCulture)); } r.AppendLine(); }