Skip to content

Commit

Permalink
Fix: 2022-07-08
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Jul 7, 2022
1 parent ad7827f commit 5a9e31c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
15 changes: 9 additions & 6 deletions db/Binary/MS Compiled HTML Help.1.sg
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
// DIE's signature file
// Author: sendersu
/*
If errors pls contact sendersu on exelab.ru
*/
// Authors:
// sendersu (sendersu on exelab.ru),
// Kaens (TG @kaens)

init("format","Microsoft Compiled HTML Help");

includeScript("read");

function detect(bShowType,bShowVersion,bShowOptions)
{
if(Binary.compare("'ITSF'03000000"))
if(Binary.compare("'ITSF'..000000"))
{
bDetected=1;
bDetected = 1;
sVersion = "v"+Binary.read_int32(4,_BE);
sOption(Binary.read_uint32(0x14,_BE),"LangID: ");
}

return result(bShowType,bShowVersion,bShowOptions);
Expand Down
2 changes: 1 addition & 1 deletion db/Binary/wav.1.sg
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ function nextChunk() {
case "data":
if(nBPS && nFormat==1 && (nBPS==8 || nBPS==16)) {
var nmSeconds = Math.round(Binary.readDword(pc-4)/(nBPS/8)/nRate/nChannels*1000);
sOption(new Date(nmSeconds).toISOString().substr(11, 8));
sOption=new Date(nmSeconds).toISOString().substr(11, 8);
}
break;
case "INFO":
Expand Down
3 changes: 3 additions & 0 deletions help/Binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,10 @@ if(signature=="AA5411DD")

```
```
**bool isVerbose()**

```
```
**quint8 read_uint8(qint64 nOffset)*

```
Expand Down

0 comments on commit 5a9e31c

Please sign in to comment.