mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
VolumeCreator: Fix a typo in VolumeKeyForPartition's name
This commit is contained in:
parent
1db1a8aacf
commit
222b33f0a3
3 changed files with 4 additions and 4 deletions
|
@ -120,7 +120,7 @@ bool IsVolumeWadFile(const IVolume *_rVolume)
|
|||
return (Common::swap32(MagicWord) == 0x00204973 || Common::swap32(MagicWord) == 0x00206962);
|
||||
}
|
||||
|
||||
void VolumeKeyForParition(IBlobReader& _rReader, u64 offset, u8* VolumeKey)
|
||||
void VolumeKeyForPartition(IBlobReader& _rReader, u64 offset, u8* VolumeKey)
|
||||
{
|
||||
CBlobBigEndianReader Reader(_rReader);
|
||||
|
||||
|
@ -192,7 +192,7 @@ static IVolume* CreateVolumeFromCryptedWiiImage(std::unique_ptr<IBlobReader> rea
|
|||
if ((rPartition.Type == _VolumeType && (int)_VolumeNum == -1) || i == _VolumeNum)
|
||||
{
|
||||
u8 VolumeKey[16];
|
||||
VolumeKeyForParition(*reader, rPartition.Offset, VolumeKey);
|
||||
VolumeKeyForPartition(*reader, rPartition.Offset, VolumeKey);
|
||||
return new CVolumeWiiCrypted(std::move(reader), rPartition.Offset, VolumeKey);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue