mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 06:38:03 -05:00
aes_util: Make use of non-template variant of Transcode
Same behavior, less template instantiations.
This commit is contained in:
@ -116,7 +116,7 @@ void AESCipher<Key, KeySize>::XTSTranscode(const u8* src, std::size_t size, u8*
|
||||
|
||||
for (std::size_t i = 0; i < size; i += sector_size) {
|
||||
SetIV(CalculateNintendoTweak(sector_id++));
|
||||
Transcode<u8, u8>(src + i, sector_size, dest + i, op);
|
||||
Transcode(src + i, sector_size, dest + i, op);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user