AlexJGriffith

Results 23 comments of AlexJGriffith

This is not a bug in love.js. Its a PUC Lua5.1 issue :( Casting to strings in `string.format` is not defined behaviour in Lua5.1. As with most undefined behaviour its...

Love2d supports PUC Lua5.1 by default. It is used on platforms that don't support luajit. By passing in the `-LOVE_JIT=0` when building the megasource it reverts to using Lua 5.1...

Goto was only introduced in Lua 5.2. Luajit adopted the feature. Since there is no wasm support for luajit, the web target relies on Lua 5.1. There is no fix,...