summaryrefslogtreecommitdiffstatshomepage
path: root/plugins
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2017-12-17 15:03:46 -0600
committer cracyc <cracyc@users.noreply.github.com>2017-12-17 15:03:46 -0600
commite766c5d5c76a9e958fbfb8ed3f2093f15a56d184 (patch)
tree16b1faac3bdd7aaf64bae2df487dedd15c9bb56c /plugins
parent5946db10717ac3493eae68f4a75a4bb0aa168b69 (diff)
plugins/hiscore: remove debug print (nw)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/hiscore/init.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/hiscore/init.lua b/plugins/hiscore/init.lua
index df998d70a7c..e9178c6a943 100644
--- a/plugins/hiscore/init.lua
+++ b/plugins/hiscore/init.lua
@@ -50,7 +50,6 @@ function hiscore.startplugin()
end
hiscore_path = lfs.env_replace(_conf["hi_path"] or hiscore_path);
timed_save = _conf["only_save_at_exit"] ~= "1"
- print(timed_save)
-- hiscoredata_path = _conf["dat_path"]; -- don't know if I should do it, but wathever
return true
end
@@ -61,7 +60,7 @@ function hiscore.startplugin()
local _table = {};
for line in string.gmatch(dsting, '([^\n]+)') do
local cpu, mem;
- cputag, space, offs, len, chk_st, chk_ed, fill = string.match(line, '^@([^,]+),([^,]+),([^,]+),([^,]+),([^,]+),([^,]+),?(%x?%x?)');
+ local cputag, space, offs, len, chk_st, chk_ed, fill = string.match(line, '^@([^,]+),([^,]+),([^,]+),([^,]+),([^,]+),([^,]+),?(%x?%x?)');
cpu = manager:machine().devices[cputag];
if not cpu then
emu.print_verbose("hiscore: " .. cputag .. " device not found")