glfw: Bug fix: Missed to initialize a member of VidMode on Windows

This commit is contained in:
Hajime Hoshi 2019-06-27 03:38:10 +09:00
parent 7f15013014
commit 9a0cefedce

View File

@ -93,6 +93,7 @@ func (m *Monitor) GetVideoMode() *VidMode {
Height: int(vv.height), Height: int(vv.height),
RedBits: int(vv.redBits), RedBits: int(vv.redBits),
GreenBits: int(vv.greenBits), GreenBits: int(vv.greenBits),
BlueBits: int(vv.blueBits),
RefreshRate: int(vv.refreshRate), RefreshRate: int(vv.refreshRate),
} }
} }