From 48fbdbfaafb6deada47a594f2cc7ee7fdc443893 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Wed, 30 Sep 2015 21:15:02 +0300 Subject: [PATCH] Update debugImageApi.lua --- Beta/debugImageApi.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Beta/debugImageApi.lua b/Beta/debugImageApi.lua index df8a8c45..aefb4deb 100644 --- a/Beta/debugImageApi.lua +++ b/Beta/debugImageApi.lua @@ -436,7 +436,7 @@ end local function convertAllPngToPic() local counter = 0 local function doConvert(path) - local fileList = ecs.getFileList() + local fileList = ecs.getFileList(path) for file = 1, #fileList do if fs.isDirectory(path..file) then doConvert(path..file) @@ -458,7 +458,7 @@ local function convertAllPngToPic() end print(" ") - doConvert("") + doConvert("/") print("Всего сконвертировано "..counter.." файлов.") print(" ") end