Skip to content
Snippets Groups Projects
Commit caf364ba authored by Kayz's avatar Kayz Committed by Rob Swindell
Browse files

change the program var in xtrn.js to prog to be compatible with any existing...

change the program var in xtrn.js to prog to be compatible with any existing uses of eval_before_exec
parent 17fcb7f9
Branches
Tags
No related merge requests found
......@@ -5,11 +5,11 @@
"use strict";
function exec_xtrn_post(program)
function exec_xtrn_post(prog)
{
var options;
if ((options = load({}, "modopts.js","xtrn:" + program.code)) == null) {
if ((options = load({}, "modopts.js","xtrn:" + prog.code)) == null) {
if ((options = load({}, "modopts.js","xtrn_sec")) == null)
options = {}; // default values
}
......
......@@ -5,11 +5,11 @@
"use strict";
function exec_xtrn_pre(program)
function exec_xtrn_pre(prog)
{
var options;
if ((options = load({}, "modopts.js","xtrn:" + program.code)) == null) {
if ((options = load({}, "modopts.js","xtrn:" + prog.code)) == null) {
if ((options = load({}, "modopts.js","xtrn_sec")) == null)
options = {}; // default values
}
......@@ -31,8 +31,8 @@ function exec_xtrn_pre(program)
}
}
if (bbs.menu_exists("xtrn/" + program.code)) {
bbs.menu("xtrn/" + program.code);
if (bbs.menu_exists("xtrn/" + prog.code)) {
bbs.menu("xtrn/" + prog.code);
console.pause();
console.line_counter=0;
}
......@@ -48,7 +48,7 @@ function exec_xtrn_pre(program)
eval(options.eval_before_exec);
}
load('fonts.js', 'xtrn:' + program.code);
load('fonts.js', 'xtrn:' + prog.code);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment