Skip to content

Commit 32fdf55

Browse files
committed
revert to original driver versions
1 parent 886299b commit 32fdf55

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

OpenHardwareMonitorLib/Hardware/InpOut.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private static bool Extract(string filePath)
194194
if (stream != null)
195195
{
196196
using FileStream target = new(filePath, FileMode.Create);
197-
//stream.Position = 1; // Skip first byte.
197+
stream.Position = 1; // Skip first byte.
198198
using var gzipStream = new GZipStream(stream, CompressionMode.Decompress);
199199
gzipStream.CopyTo(target);
200200
requiredLength = target.Length;

OpenHardwareMonitorLib/Hardware/Ring0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private static bool Extract(string filePath)
104104
if (stream != null)
105105
{
106106
using FileStream target = new(filePath, FileMode.Create);
107-
//stream.Position = 1; // Skip first byte.
107+
stream.Position = 1; // Skip first byte.
108108
using var gzipStream = new GZipStream(stream, CompressionMode.Decompress);
109109
gzipStream.CopyTo(target);
110110
requiredLength = target.Length;
1 Byte
Binary file not shown.
1 Byte
Binary file not shown.
3.04 KB
Binary file not shown.
2.73 KB
Binary file not shown.

0 commit comments

Comments
 (0)