Handle no DLSS support error (#1)
* Handle no DLSS support error * Small readability changes Authored-by: AlexZorzi<alexz@europlan.it> Co-authored-by: Watn3y <noaht@watn3y.de>
This commit is contained in:
parent
ffccbaf8d4
commit
98be679ce2
2 changed files with 11 additions and 16 deletions
5
main.go
5
main.go
|
@ -37,10 +37,11 @@ func main() {
|
|||
Text: "Toggle Indicator",
|
||||
|
||||
OnClicked: func() {
|
||||
// a value of 1024 activates the overlay, a value of 0 deactivates it. Other values seem to deactivate it as well but you never know
|
||||
if indicatorStatus == 1024 {
|
||||
setKeyOff()
|
||||
setKey(0)
|
||||
} else {
|
||||
setKeyOn()
|
||||
setKey(1024)
|
||||
}
|
||||
getKey()
|
||||
indicatorTextLabel.SetText(indicatorStatusString)
|
||||
|
|
22
reg.go
22
reg.go
|
@ -5,8 +5,11 @@ import (
|
|||
)
|
||||
|
||||
func getKey() {
|
||||
key, _ := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\NVIDIA Corporation\Global\NGXCore`, registry.QUERY_VALUE)
|
||||
|
||||
key, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\NVIDIA Corporation\Global\NGXCore`, registry.QUERY_VALUE)
|
||||
if err != nil {
|
||||
indicatorStatusString = "Error: DLSS not supported or registry path not accessible"
|
||||
return
|
||||
}
|
||||
value, _, _ := key.GetIntegerValue("ShowDlssIndicator")
|
||||
defer key.Close()
|
||||
|
||||
|
@ -20,18 +23,9 @@ func getKey() {
|
|||
indicatorStatusString = "NOT SET"
|
||||
}
|
||||
}
|
||||
func setKeyOn() {
|
||||
|
||||
func setKey(value int) {
|
||||
key, _ := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\NVIDIA Corporation\Global\NGXCore`, registry.SET_VALUE)
|
||||
|
||||
key.SetDWordValue("ShowDlssIndicator", uint32(1024))
|
||||
key.SetDWordValue("ShowDlssIndicator", uint32(value))
|
||||
defer key.Close()
|
||||
|
||||
}
|
||||
|
||||
func setKeyOff() {
|
||||
key, _ := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\NVIDIA Corporation\Global\NGXCore`, registry.SET_VALUE)
|
||||
|
||||
key.SetDWordValue("ShowDlssIndicator", uint32(0))
|
||||
defer key.Close()
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue