Skip to content
Snippets Groups Projects
Commit 0ecedec0 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 69763aaf
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -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