graphicsdriver: Fix a panic message

This commit is contained in:
Hajime Hoshi 2019-08-15 21:29:37 +09:00
parent 900af20617
commit 01297fe015

View File

@ -28,7 +28,7 @@ import (
func Get() driver.Graphics {
if !driver.IsPlayground {
panic("ebiten: a graphics driver is not implemented on this environment")
panic("ebiten: a graphics driver is not implemented on this environment: isn't cgo disabled?")
}
// TODO: Implement this
return nil