diff --git a/examples/keyboard/keyboard/keyrects.go b/examples/keyboard/keyboard/keyrects.go index 19b89220d..1455dce24 100644 --- a/examples/keyboard/keyboard/keyrects.go +++ b/examples/keyboard/keyboard/keyrects.go @@ -1,4 +1,4 @@ -// Copyright 2013 Hajime Hoshi +// Copyright 2013 The Ebiten Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/genkeys.go b/genkeys.go index fc361525b..25569d17c 100644 --- a/genkeys.go +++ b/genkeys.go @@ -264,10 +264,10 @@ func main() { buildTag := "" switch path { case "internal/ui/keys_glfw.go": - buildTag = `// +build darwin,!arm,!arm64 linux windows -// +build !js -// +build !android -// +build !ios` + buildTag = "// +build darwin,!arm,!arm64 linux windows" + + "\n// +build !js" + + "\n// +build !android" + + "\n// +build !ios" case "internal/ui/keys_js.go": buildTag = "// +build js" }