Skip to content
Snippets Groups Projects
Commit 8b6fd9e2 authored by rswindell's avatar rswindell
Browse files

Convert relative "dir" values from json-service.ini to absolute paths to...

Convert relative "dir" values from json-service.ini to absolute paths to resolve crazy errors that can transpire if you have an xtrn/xtrn/<game> directory in addition to xtrn/<game> directory.
parent e97b8d16
No related branches found
No related tags found
No related merge requests found
......@@ -594,7 +594,7 @@ engine = new (function() {
function Module(name, dir, read, write) {
this.online = true;
this.name = name;
this.dir = backslash(dir);
this.dir = backslash(fullpath(dir));
this.queue = undefined;
this.commands = {};
this.read = read;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment