Replace dots with slashes instead of question marks;

In filesystem loader.
This commit is contained in:
bjorn 2018-03-22 10:07:19 -07:00
parent 95da07d165
commit adee0a3012
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ int l_lovrFilesystemLoad(lua_State* L);
// Loader to help Lua's require understand PhysFS.
static int filesystemLoader(lua_State* L) {
const char* module = luaL_gsub(L, lua_tostring(L, -1), ".", "?");
const char* module = luaL_gsub(L, lua_tostring(L, -1), ".", "/");
lua_pop(L, 2);
char* path; int i;