mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-03 22:44:28 +01:00
uidriver/mobile: Do not use %q at the mobile error message
Closes #1447
This commit is contained in:
parent
c92ccfff79
commit
fcbde8d124
@ -255,7 +255,7 @@ func (u *UserInterface) run(context driver.UIContext, mainloop bool) (err error)
|
||||
// TODO: Panic on other goroutines cannot be handled here.
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
err = fmt.Errorf("%v\n%q", r, string(debug.Stack()))
|
||||
err = fmt.Errorf("%v\n%s", r, string(debug.Stack()))
|
||||
}
|
||||
}()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user