love.graphics.getModes
Removed in LÖVE 0.9.0 Moved to the love.window module as love.window.getFullscreenModes. Gets a list of supported fullscreen modes. Function Synopsis modes = love.graphics.getModes( ) Arguments None. Returns table modes A table of width/height pairs. (Note that this may not be in order.)
Examples Format of the returned table modes = love.graphics.getModes()
-- modes = {
-- { width = 320, height = 240 },
-- { width = 640, height = 480 },
-- { width = 800, he