diff options
Diffstat (limited to 'lua-interface-light.lua')
-rw-r--r-- | lua-interface-light.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua-interface-light.lua b/lua-interface-light.lua index 78dc7bf..ae115f9 100644 --- a/lua-interface-light.lua +++ b/lua-interface-light.lua @@ -152,10 +152,10 @@ function lua_interface_light_main() if commandline then return true end if not okay then return false end - if not pcall(Archive(input_file_text.value)) then + if not pcall(Archive, input_file_text.value) then error(error_not_archive_locale[system_locale]) end - if not pcall(load "archive_main.lua") then + if not pcall(load, "archive_main.lua") then error(error_wrong_archive_locale[system_locale]) end if not type(archive_main) == "function" then |