Just managed to fix a weird bug that reported in my game "Eggz" and figured the solution might be useful to someone.
The bug was: on really big screens I get, for some reason, a view on a tiny corner of the game. The television I'm testing on reset its resolution to 800x600 but Löve still reported 1920x1080 as a valid resolution and set it successfully. The result is an image that doesn't fit in the screen, which has mysteriously been set to 800x600.
The reason the screen is set to this low resolution seems to be that fullscreen is set to true in love.conf:
Code: Select all
t.window.fullscreen = true
This problem occurs on large televisions, projectors and retinal displays.