summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2016-07-24 14:44:38 -0500
committer cracyc <cracyc@users.noreply.github.com>2016-07-24 14:44:38 -0500
commit0184946dd8623782725b5d34d3ef97eb8afe5531 (patch)
tree5a80969bc704484a34d4592fd10be64a2c848f3a
parent41875a92af8c501e30b80d0d3554f19f78817f00 (diff)
boot.lua: only load plugins in plugin path (nw)
-rw-r--r--plugins/boot.lua2
-rw-r--r--plugins/hiscore/hiscore.dat7
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/boot.lua b/plugins/boot.lua
index 2e5b46e679d..37633654240 100644
--- a/plugins/boot.lua
+++ b/plugins/boot.lua
@@ -22,7 +22,7 @@ function lfs.env_replace(str)
end
local dir = lfs.env_replace(manager:options().entries.pluginspath:value())
-package.path = package.path .. ";" .. dir .. "/?.lua;" .. dir .. "/?/init.lua"
+package.path = dir .. "/?.lua;" .. dir .. "/?/init.lua"
local json = require('json')
local function readAll(file)
diff --git a/plugins/hiscore/hiscore.dat b/plugins/hiscore/hiscore.dat
index 83e6c5ef6b5..d5c77537b69 100644
--- a/plugins/hiscore/hiscore.dat
+++ b/plugins/hiscore/hiscore.dat
@@ -10685,6 +10685,13 @@ pitnruna:
@:maincpu,program,8981,1,27,27
+;@s:playch10.cpp
+
+;it won't reload the high score unless you reset twice
+pc_smb:
+@:cart,program,7df,4,0,0,ff
+
+
;@s:playmark.cpp
wbeachvl: