From cda6fa156f6a777b384ce83c74287ce1cac47d27 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 20 Sep 2022 23:56:27 +0900 Subject: [PATCH] examples/flappy: reorder build tags --- examples/flappy/main_c.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/flappy/main_c.go b/examples/flappy/main_c.go index f7b27ed77..7008bb01f 100644 --- a/examples/flappy/main_c.go +++ b/examples/flappy/main_c.go @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build example && (nintendosdk || microsoftgdk) +//go:build example && (microsoftgdk || nintendosdk) // +build example -// +build nintendosdk microsoftgdk +// +build microsoftgdk nintendosdk -// This file is for some special environments using 'nintendosdk' or 'microsoftgdk'. +// This file is for some special environments using 'microsoftgdk' or 'nintendosdk'. // You usually don't have to care about this file. // Actually this example works without this file in usual cases.