From bdf4bf7a6767084ff7e0682c82095ca7e0c74c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Fri, 26 Feb 2016 18:05:00 +0100 Subject: [PATCH] Fixed fs.getLabel --- src/lua/core/filesystem.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/core/filesystem.lua b/src/lua/core/filesystem.lua index 045b4b3..9bf9491 100644 --- a/src/lua/core/filesystem.lua +++ b/src/lua/core/filesystem.lua @@ -130,7 +130,7 @@ function filesystem.register(basePath, uuid) return native.fs_lastModified(realpath(path)) end function fs.getLabel() - return path --TODO: Implement, use real labels + return basePath --TODO: Implement, use real labels end function fs.remove(path) --TODO: TEST!! checkArg(1, path, "string")