Planimeter / game-framework

Planimeter Game Framework - LuaJIT FFI-based game development framework for Lua
MIT License
89 stars 3 forks source link

package.path #7

Closed revolucas closed 5 years ago

revolucas commented 5 years ago

Init.lua line 32 reads: package.path = package.path .. execdir .. "lib\\?.lua;"

A semi-colon should be added prior to appending as follows: package.path = package.path .. ";" .. execdir .. "lib\\?.lua;"

Otherwise, running lgf.cmd on Windows results in it being unable to find 'physfs'.

andrewmcwatters commented 5 years ago

I'll fix and confirm this tonight. Thanks @revolucas!

andrewmcwatters commented 5 years ago

Extricated on Discord helped confirm and fix this bug! Thanks all!