VolumeCreator: Fix a typo in VolumeKeyForPartition's name

This commit is contained in:
Lioncash
2015-08-31 19:30:32 -04:00
parent 1db1a8aacf
commit 222b33f0a3
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ bool CVolumeWiiCrypted::ChangePartition(u64 offset)
m_LastDecryptedBlockOffset = -1;
u8 volume_key[16];
DiscIO::VolumeKeyForParition(*m_pReader, offset, volume_key);
DiscIO::VolumeKeyForPartition(*m_pReader, offset, volume_key);
aes_setkey_dec(m_AES_ctx.get(), volume_key, 128);
return true;
}