From 238af0064f8bf442501fcb2ebf0a4957bf3b015c Mon Sep 17 00:00:00 2001 From: bjorn Date: Thu, 27 Sep 2018 11:18:37 -0700 Subject: [PATCH] Add missing lovr.filesystem.unmount function; --- src/api/filesystem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/filesystem.c b/src/api/filesystem.c index 04164c19..dd2d050e 100644 --- a/src/api/filesystem.c +++ b/src/api/filesystem.c @@ -349,6 +349,7 @@ static const luaL_Reg lovrFilesystem[] = { { "remove", l_lovrFilesystemRemove }, { "setRequirePath", l_lovrFilesystemSetRequirePath }, { "setIdentity", l_lovrFilesystemSetIdentity }, + { "unmount", l_lovrFilesystemUnmount }, { "write", l_lovrFilesystemWrite }, { NULL, NULL } };