diff options
Diffstat (limited to 'honey/window.lua')
-rw-r--r-- | honey/window.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/honey/window.lua b/honey/window.lua index 204f8e4..35e04ac 100644 --- a/honey/window.lua +++ b/honey/window.lua @@ -17,7 +17,6 @@ function Window.new(_, width, height, title, monitor, share) self.win = glfw.CreateWindow(width, height, title, monitor, share) self.__gc = honey.util.gc_canary(function() - print("destroying window " .. tostring(self.win)) glfw.DestroyWindow(self.win) end) @@ -149,7 +148,7 @@ function Window.setContentScaleCallback(self, cb) end -function Window.SwapBuffers(self) +function Window.swapBuffers(self) glfw.SwapBuffers(self.win) end |