mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
[nx] silence warnings.
This commit is contained in:
parent
5186ee2d77
commit
63b3a4fcfa
1 changed files with 2 additions and 2 deletions
|
@ -61,9 +61,9 @@ void nx::NpdmBinary::toBytes()
|
|||
uint32_t offset, size;
|
||||
} acid, aci;
|
||||
|
||||
acid.offset = align(sizeof(sNpdmHeader), npdm::kSectionAlignSize);
|
||||
acid.offset = (uint32_t)align(sizeof(sNpdmHeader), npdm::kSectionAlignSize);
|
||||
acid.size = (uint32_t)mAcid.getBytes().size();
|
||||
aci.offset = acid.offset + align(acid.size, npdm::kSectionAlignSize);
|
||||
aci.offset = (uint32_t)acid.offset + align(acid.size, npdm::kSectionAlignSize);
|
||||
aci.size = (uint32_t)mAci.getBytes().size();
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue