Missed a spot where a /pcjs folder needed to be renamed to /pcx86

This commit is contained in:
Jeff Parsons 2016-12-27 15:09:03 -08:00 committed by Jeff Parsons
commit c4d32af6da
5 changed files with 6 additions and 6 deletions

View file

@ -53,9 +53,9 @@ function savePC(idMachine, sPCJSFile, callback)
var sParms = cmp.saveMachineParms();
if (!sPCJSFile) {
if (DEBUG) {
sPCJSFile = "/tmp/pcjs/" + (XMLVERSION || APPVERSION) + "/pc.js"
sPCJSFile = "/tmp/pcx86/" + (XMLVERSION || APPVERSION) + "/pcx86.js"
} else {
sPCJSFile = "/versions/pcjs/" + (XMLVERSION || APPVERSION) + "/pc" + (dbg? "-dbg" : "") + ".js";
sPCJSFile = "/versions/pcx86/" + (XMLVERSION || APPVERSION) + "/pcx86" + (dbg? "-dbg" : "") + ".js";
}
}
if (callback && callback({ state: sState, parms: sParms })) return true;