ui: Bug fix: Remove unneeded argument

This commit is contained in:
Hajime Hoshi 2016-09-03 02:12:11 +09:00
parent d658347c9d
commit 32f6e68a48

View File

@ -142,7 +142,7 @@ func ScreenScale() float64 {
return s
}
func Run(width, height int, scale float64, title string, g GraphicsContext, glContext opengl.Context) error {
func Run(width, height int, scale float64, title string, g GraphicsContext) error {
u := currentUI
// GLContext must be created before setting the screen size, which requires
// swapping buffers.