screen: Fix a memory leak.

Found while investigating #1079
This commit is contained in:
Emmanuel Lepage Vallee 2016-09-10 23:54:45 -04:00
parent 7a4bdca9c2
commit e66120913f
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ local screen = {object={}}
local data = {} local data = {}
data.padding = {} data.padding = {}
screen.mouse_per_screen = {} screen.mouse_per_screen = setmetatable({}, {__mode="k"})
--- Take an input geometry and substract/add a delta --- Take an input geometry and substract/add a delta
-- @tparam table geo A geometry (width, height, x, y) table -- @tparam table geo A geometry (width, height, x, y) table