diff options
| author | 2021-03-06 18:55:44 -0600 | |
|---|---|---|
| committer | 2021-03-06 18:55:44 -0600 | |
| commit | 5b489ca47564db981c0f82e2892ffc16638a6c4b (patch) | |
| tree | 0413c47749396f276ae02a9a69d0b5debc99fae3 /plugins/cheat/init.lua | |
| parent | e98378352d5cae233044002edf5093dc4dd7e642 (diff) | |
plugins: fix missed lua api changes
Diffstat (limited to 'plugins/cheat/init.lua')
| -rw-r--r-- | plugins/cheat/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cheat/init.lua b/plugins/cheat/init.lua index 4b409d1e029..be2cdf2600c 100644 --- a/plugins/cheat/init.lua +++ b/plugins/cheat/init.lua @@ -100,7 +100,7 @@ function cheat.startplugin() filename = emu.softname():gsub(":", "/") else for name, image in pairs(manager.machine.images) do - if image:exists() and image:software_list_name() ~= "" then + if image.exists and image:software_list_name() ~= "" then filename = image:software_list_name() .. "/" .. emu.softname() end end |
