- added missing config file

- added support for LG LX9500
This commit is contained in:
hbeham
2013-04-03 13:30:08 +02:00
parent 3835cc0690
commit c0e0268fdf
10 changed files with 537 additions and 99 deletions

View File

@@ -709,12 +709,12 @@ namespace ChanSort.Loader.TllFile
{
if (fileContent[off + i - j] == 101 && fileContent[off + i - j - 6] == 100)
// check for Volume/MaxVolue to be 101/100
return this.firmwareBlockOffset + i - j - 15;
return i - j - 15;
}
return -1;
return 0;
}
}
return -1;
return 0;
}
#endregion