From 90c542951d992d0cf673a20f531b1b240bd01b97 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 23 Jan 2018 23:49:19 +0900 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 3d3254d..6fca696 100644 --- a/FAQ.md +++ b/FAQ.md @@ -18,7 +18,7 @@ Such build tags are an idiom you can find e.g. in `golang.org/x/exp/shiny/exampl ## My app built with Ebiten creates an unknown process `Console Window Host`. What is this? -This is because your app is still an console app, not a GUI app. Ebiten tries to close the console when necessary, but the app itself is still not recognized as a GUI app. You can suppress this by specifying ldflags when go-building like this: +This is because your app is still a console app, not a GUI app. Ebiten tries to close the console when necessary, but the app itself is still not recognized as a GUI app. You can suppress this by specifying ldflags when go-building like this: ``` go build -ldflags -H=windowsgui path/to/your/game