Ruairi Dorrity
Ruairi Dorrity
The following code crashes: ``` local moonshine = require('moonshine') local effect = moonshine(moonshine.effects.crt) local stencilFunction = (function () love.graphics.rectangle('fill', 100, 100, 100, 100) end) function love.draw() effect(function () love.graphics.setColor(1, 1,...
Encountered on macOS 12.0 (Apple Silicon). Occurs both with love application running on Rosetta and running natively. main.lua to reproduce: ``` function love.joystickadded() print(os.date("%Y-%m-%d %H:%M:%S"), "love.joystickadded()") end function love.joystickremoved() print(os.date("%Y-%m-%d...
Not even sure if this is a bug or just an FYI/gotcha. Reproducible with the 11.5 AppImage (`love-11.5-x86_64.AppImage`) and this minimal `main.lua`. ``` local settingTextInput = true function love.load() love.window.setFullscreen(true,...