mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 02:38:53 +01:00
parent
6e12f287b0
commit
be665a3526
@ -208,16 +208,17 @@ func (u *userInterface) loop(g GraphicsContext) error {
|
||||
var cf js.Callback
|
||||
f = func([]js.Value) {
|
||||
if err := u.update(g); err != nil {
|
||||
go func() {
|
||||
ch <- err
|
||||
close(ch)
|
||||
}()
|
||||
ch <- err
|
||||
close(ch)
|
||||
return
|
||||
}
|
||||
js.Global.Get("window").Call("requestAnimationFrame", cf)
|
||||
}
|
||||
cf = js.NewCallback(f)
|
||||
f(nil)
|
||||
// Call f asyncly to be async since ch is used in f.
|
||||
go func() {
|
||||
f(nil)
|
||||
}()
|
||||
return <-ch
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user