fixed GetTime return type.

This commit is contained in:
Alireza_T 2022-08-05 16:58:25 +04:30 committed by GitHub
parent 2ba84634ed
commit 3893e9cf63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -445,9 +445,9 @@ func GetFrameTime() float32 {
} }
// GetTime - Return time in seconds // GetTime - Return time in seconds
func GetTime() float32 { func GetTime() float64 {
ret := C.GetTime() ret := C.GetTime()
v := (float32)(ret) v := (float64)(ret)
return v return v
} }