瀏覽代碼

Fix missing line breaks

Oops.
Pavel 7 年之前
父節點
當前提交
a3aeefaf0f
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      window/glfw.go

+ 2 - 0
window/glfw.go

@@ -349,11 +349,13 @@ func (w *glfwWindow) SetStandardCursor(cursor StandardCursor) {
 // SetInputMode changes specified input to specified state
 // Reference: http://www.glfw.org/docs/latest/group__input.html#gaa92336e173da9c8834558b54ee80563b
 func (w *glfwWindow) SetInputMode(mode InputMode, state int) {
+
 	w.win.SetInputMode(glfw.InputMode(mode), state)
 }
 
 // SetCursorPos sets cursor position in window coordinates
 // Reference: http://www.glfw.org/docs/latest/group__input.html#ga04b03af936d906ca123c8f4ee08b39e7
 func (w *glfwWindow) SetCursorPos(xpos, ypos float64) {
+
 	w.win.SetCursorPos(xpos, ypos)
 }