Upgrade SDVX song unlock, remove patch suffix from saved filename

This commit is contained in:
Will Toohey
2017-03-13 14:25:28 +10:00
parent 49efe933b3
commit cf9e490c77
2 changed files with 15 additions and 3 deletions
+2 -1
View File
@@ -225,12 +225,13 @@ DllPatcher.prototype.saveDll = function() {
return;
var fname = this.filename;
/* disabled as it can get kinda hectic with many patches
for(var i = 0; i < this.mods.length; i++) {
var enabledStr = this.mods[i].applyPatch(this.dllFile);
if(enabledStr) {
fname += '-' + enabledStr;
}
}
} */
fname += '.dll';
var blob = new Blob([this.dllFile], {type: "application/octet-stream"});