mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 11:18:54 +01:00
Make go vet happy
This commit is contained in:
parent
d6c1bb2ae8
commit
1fa76b89a3
@ -1,4 +1,4 @@
|
|||||||
// Copyright 2013 Hajime Hoshi
|
// Copyright 2013 The Ebiten Authors
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
// you may not use this file except in compliance with the License.
|
// you may not use this file except in compliance with the License.
|
||||||
|
@ -264,10 +264,10 @@ func main() {
|
|||||||
buildTag := ""
|
buildTag := ""
|
||||||
switch path {
|
switch path {
|
||||||
case "internal/ui/keys_glfw.go":
|
case "internal/ui/keys_glfw.go":
|
||||||
buildTag = `// +build darwin,!arm,!arm64 linux windows
|
buildTag = "// +build darwin,!arm,!arm64 linux windows" +
|
||||||
// +build !js
|
"\n// +build !js" +
|
||||||
// +build !android
|
"\n// +build !android" +
|
||||||
// +build !ios`
|
"\n// +build !ios"
|
||||||
case "internal/ui/keys_js.go":
|
case "internal/ui/keys_js.go":
|
||||||
buildTag = "// +build js"
|
buildTag = "// +build js"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user