Skip to content

Commit

Permalink
CPU Voltage fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Sep 5, 2014
1 parent 5bdc044 commit b0ebe75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.src/Finfosys.form
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
Text = ("Voltage")
Sheared = True
Padding = 3
HighlightColor = &HFF7F00&
HighlightColor = &H000000&
}
{ Label249 Label
Move(182,455,168,28)
Expand Down
5 changes: 3 additions & 2 deletions I-Nex/i-nex/.src/VCore.module
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ Public Sub _init()
For i = 0 To VCoreDirectiories.Count
If Access(VCoreDirectiories[i], gb.Read) = True Then
Try CoreVoltage = Replace(File.Load(VCoreDirectiories[i]), "\n", "")
CoreVoltage = Left(CoreVoltage, +1) & "." & Right(CoreVoltage, +3) & " V"
CoreVoltage = (CInt(CoreVoltage) / 1000) & " V"
CoreVoltage = Replace(CoreVoltage, ".", " . ")
Visible = True
Endif
Next
End
End

0 comments on commit b0ebe75

Please sign in to comment.