mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Update chromedp to fix console errors (#1521)
This commit is contained in:
22
vendor/github.com/chromedp/sysutil/sysutil_windows.go
generated
vendored
Normal file
22
vendor/github.com/chromedp/sysutil/sysutil_windows.go
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
// +build windows
|
||||
|
||||
package sysutil
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"time"
|
||||
)
|
||||
|
||||
var (
|
||||
kernel32DLL = syscall.MustLoadDLL("kernel32")
|
||||
procGetTickCount64 = kernel32DLL.MustFindProc("GetTickCount64")
|
||||
)
|
||||
|
||||
func init() {
|
||||
res, _, err := syscall.Syscall(procGetTickCount64.Addr(), 0, 0, 0, 0)
|
||||
if err != 0 {
|
||||
btime = time.Now()
|
||||
return
|
||||
}
|
||||
btime = time.Now().Add(time.Duration(-res) * time.Millisecond)
|
||||
}
|
||||
Reference in New Issue
Block a user