From 4ed4c48f0d2394117c750d984b941c1582639c58 Mon Sep 17 00:00:00 2001 From: Sgeo Date: Thu, 18 Oct 2018 22:28:18 -0400 Subject: [PATCH] Support vice.conf --- loader.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/loader.js b/loader.js index 2000939c..4b56ead5 100644 --- a/loader.js +++ b/loader.js @@ -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];