Fixed errors.

This commit is contained in:
2025-01-18 03:24:42 +00:00
parent 73fa9eb77c
commit 48205d7e85

View File

@@ -38,8 +38,8 @@
#pragma author Nat Portillo <claunia@claunia.com> #pragma author Nat Portillo <claunia@claunia.com>
#pragma description AaruFormat parser #pragma description AaruFormat parser
#pragma endian little #pragma endian little
#pragma magic [ 54 4D 52 46 4D 43 49 44 @ 0x00 // DICMFRMT #pragma magic [ 44 49 43 4D 46 52 4D 54 ] @ 0x00 // DICMFRMT
#pragma magic [ 54 4D 52 46 55 52 41 41 @ 0x00 // AARUFRMT #pragma magic [ 41 41 52 55 46 52 4D 54 ] @ 0x00 // AARUFRMT
#ifdef __IMHEX__ #ifdef __IMHEX__
import hex.core; import hex.core;
@@ -1213,4 +1213,4 @@ struct Index
AaruHeader header @ 0x00; AaruHeader header @ 0x00;
if(header.identifier != DIC_MAGIC && header.identifier != AARU_MAGIC) if(header.identifier != DIC_MAGIC && header.identifier != AARU_MAGIC)
std::error("Incorrect signature!"); std::error("Incorrect signature!");