Skip to content

Commit

Permalink
Merge pull request #48 from Sgeo/patch-2
Browse files Browse the repository at this point in the history
Support vice.conf
  • Loading branch information
db48x authored Oct 20, 2018
2 parents 91a3a6c + 4ed4c48 commit 0828c5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,9 @@ var Module = null;
files_with_ext_from_filelist(filelist, meta.emulator_ext).forEach(function (file, i) {
wanted_files.push(file.name);
});
files_with_ext_from_filelist(filelist, "conf").forEach(function (file, i) {
wanted_files.push(file.name);
});
meta_props_matching(meta, /^vice_drive_([89])$/).forEach(function (result) {
let key = result[0], match = result[1];
drives[match[1]] = meta[key];
Expand Down

0 comments on commit 0828c5b

Please sign in to comment.