summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/cheat/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/cheat/init.lua')
-rw-r--r--plugins/cheat/init.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/cheat/init.lua b/plugins/cheat/init.lua
index 412bc261030..208efc3585e 100644
--- a/plugins/cheat/init.lua
+++ b/plugins/cheat/init.lua
@@ -72,7 +72,6 @@ exports.license = "The BSD 3-Clause License"
exports.author = { name = "Carl" }
local cheat = exports
-local util = require("util")
function cheat.set_folder(path)
cheat.path = path
@@ -160,7 +159,7 @@ function cheat.startplugin()
local path = emu.subst_env(manager.machine.options.entries.cheatpath:value():match("([^;]+)"))
local attr = lfs.attributes(path)
if not attr then
- util.mkdir_recursive(path)
+ lfs.mkdir(path)
elseif attr.mode ~= "directory" then -- uhhh?
return
end
@@ -168,7 +167,7 @@ function cheat.startplugin()
local softpath = path .. "/" .. cheatname:match("([^/]+)")
local attr = lfs.attributes(softpath)
if not attr then
- util.mkdir_recursive(softpath)
+ lfs.mkdir(softpath)
elseif attr.mode ~= "directory" then -- uhhh?
return
end