mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
internal/uidriver/glfw: Rename variables
This commit is contained in:
parent
bceb512e78
commit
f989ce4e64
@ -465,14 +465,14 @@ func (u *UserInterface) setInitWindowFloating(floating bool) {
|
||||
|
||||
func (u *UserInterface) isInitWindowMaximized() bool {
|
||||
u.m.Lock()
|
||||
f := u.initWindowMaximized
|
||||
m := u.initWindowMaximized
|
||||
u.m.Unlock()
|
||||
return f
|
||||
return m
|
||||
}
|
||||
|
||||
func (u *UserInterface) setInitWindowMaximized(floating bool) {
|
||||
func (u *UserInterface) setInitWindowMaximized(maximized bool) {
|
||||
u.m.Lock()
|
||||
u.initWindowMaximized = floating
|
||||
u.initWindowMaximized = maximized
|
||||
u.m.Unlock()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user