# HG changeset patch # User moel.mich # Date 1419806556 0 # Node ID 39ed1a16c32a573fc2dbf2e44b3ad22dbf613c61 # Parent 56d59f52fa2b0dc3fe914fc7dfe60e3855d854de Fixed Issue 645. diff -r 56d59f52fa2b -r 39ed1a16c32a GUI/AboutBox.Designer.cs --- a/GUI/AboutBox.Designer.cs Sun Dec 28 17:54:26 2014 +0000 +++ b/GUI/AboutBox.Designer.cs Sun Dec 28 22:42:36 2014 +0000 @@ -84,7 +84,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(273, 13); this.label2.TabIndex = 3; - this.label2.Text = "Copyright © 2009-2013 Michael Möller and contributers. "; + this.label2.Text = "Copyright © 2009-2014 Michael Möller and contributers. "; // // label3 // diff -r 56d59f52fa2b -r 39ed1a16c32a Hardware/CPU/CPUGroup.cs --- a/Hardware/CPU/CPUGroup.cs Sun Dec 28 17:54:26 2014 +0000 +++ b/Hardware/CPU/CPUGroup.cs Sun Dec 28 22:42:36 2014 +0000 @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2013 Michael Möller + Copyright (C) 2009-2014 Michael Möller */ @@ -23,7 +23,7 @@ private static CPUID[][] GetProcessorThreads() { List threads = new List(); - for (int i = 0; i < 32; i++) { + for (int i = 0; i < 64; i++) { try { threads.Add(new CPUID(i)); } catch (ArgumentOutOfRangeException) { } diff -r 56d59f52fa2b -r 39ed1a16c32a Hardware/CPU/CPUID.cs --- a/Hardware/CPU/CPUID.cs Sun Dec 28 17:54:26 2014 +0000 +++ b/Hardware/CPU/CPUID.cs Sun Dec 28 22:42:36 2014 +0000 @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2010 Michael Möller + Copyright (C) 2009-2014 Michael Möller */ @@ -76,7 +76,7 @@ uint eax, ebx, ecx, edx; - if (thread >= 32) + if (thread >= 64) throw new ArgumentOutOfRangeException("thread"); ulong mask = 1UL << thread; diff -r 56d59f52fa2b -r 39ed1a16c32a Properties/AssemblyVersion.cs --- a/Properties/AssemblyVersion.cs Sun Dec 28 17:54:26 2014 +0000 +++ b/Properties/AssemblyVersion.cs Sun Dec 28 22:42:36 2014 +0000 @@ -10,5 +10,5 @@ using System.Reflection; -[assembly: AssemblyVersion("0.6.0.14")] -[assembly: AssemblyInformationalVersion("0.6.0.14 Alpha")] \ No newline at end of file +[assembly: AssemblyVersion("0.6.0.15")] +[assembly: AssemblyInformationalVersion("0.6.0.15 Alpha")] \ No newline at end of file