Skip to content
Snippets Groups Projects
Commit e843a018 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Install door game even when executable filename case doesn't match

e.g. foodfite.com will match FOODFITE.COM or FoodFite.COM

(the MD5 sum is insuring it's the right file anyway).
parent 17eca6d3
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,10 @@ function scan(options)
for(var i in exe_list) {
directory(options.xtrn_dir + '*').forEach(function (e) {
const f = new File(e + i);
const fname = file_getcase(e + i);
if(!fname)
return;
const f = new File(fname);
if (!f.open('rb')) {
return;
}
......
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