Merge pull request #14 from xoascf/master

fixed music insertion for multiple languages
This commit is contained in:
itsmattkc 2020-08-22 01:35:31 +10:00 committed by GitHub
commit 397075a15f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -774,6 +774,24 @@ namespace Rebuilder
WriteByte(lego1dll, 0x0D); WriteByte(lego1dll, 0x0D);
WriteByte(lego1dll, 0x10); WriteByte(lego1dll, 0x10);
break; break;
case Version.kGerman11:
WriteByte(lego1dll, 0xA6, 0x52195);
WriteByte(lego1dll, 0x3C);
WriteByte(lego1dll, 0x0D);
WriteByte(lego1dll, 0x10);
break;
case Version.kDanish11:
WriteByte(lego1dll, 0x56, 0x52195);
WriteByte(lego1dll, 0x3C);
WriteByte(lego1dll, 0x0D);
WriteByte(lego1dll, 0x10);
break;
case Version.kSpanish11:
WriteByte(lego1dll, 0x96, 0x52195);
WriteByte(lego1dll, 0x3B);
WriteByte(lego1dll, 0x0D);
WriteByte(lego1dll, 0x10);
break;
} }
WriteString(lego1dll, jukebox_path, jukebox_path_offset); WriteString(lego1dll, jukebox_path, jukebox_path_offset);
@ -1139,8 +1157,6 @@ namespace Rebuilder
{ {
if (key != null) if (key != null)
{ {
key.CreateSubKey(temp_path + "\\ISLE.EXE");
//string compat_string = "HIGHDPIAWARE"; //string compat_string = "HIGHDPIAWARE";
string compat_string = "HIGHDPIAWARE DWM8And16BitMitigation"; string compat_string = "HIGHDPIAWARE DWM8And16BitMitigation";