mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 11:18:54 +01:00
internal/glfwwin: remove unnecessary comments
This commit is contained in:
parent
8c467aaa1b
commit
bd2a31bdd8
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -106,7 +106,6 @@ jobs:
|
||||
go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...
|
||||
|
||||
- name: go test (Linux 386)
|
||||
# TODO: Add more test environments (#1305)
|
||||
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
|
||||
run: |
|
||||
sudo dpkg --add-architecture i386
|
||||
@ -116,7 +115,6 @@ jobs:
|
||||
env CGO_ENABLED=1 GOARCH=386 go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...
|
||||
|
||||
- name: go test (Windows 386)
|
||||
# TODO: Add more test environments (#1305)
|
||||
if: ${{ startsWith(matrix.os, 'windows-') }}
|
||||
run: |
|
||||
# TODO: Enable this after DirectX is supported on 32bit machines (#2088)
|
||||
|
@ -1669,7 +1669,6 @@ func (w *Window) platformRestoreWindow() {
|
||||
}
|
||||
|
||||
func (w *Window) platformMaximizeWindow() error {
|
||||
// TODO: Handle error
|
||||
if _IsWindowVisible(w.win32.handle) {
|
||||
_ShowWindow(w.win32.handle, _SW_MAXIMIZE)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user