remove sleep call

This commit is contained in:
filifa
2024-08-24 18:27:13 -05:00
parent 5299d653aa
commit b1ac211369

View File

@@ -14,7 +14,6 @@ import (
"encoding/binary" "encoding/binary"
"io" "io"
"os" "os"
"time"
"unsafe" "unsafe"
) )
@@ -78,6 +77,5 @@ func main() {
C.projectm_opengl_render_frame(handle) C.projectm_opengl_render_frame(handle)
window.GLSwap() window.GLSwap()
time.Sleep(1 / 60 * time.Second)
} }
} }