diff options
| author | 2018-08-25 18:59:19 -0400 | |
|---|---|---|
| committer | 2018-09-04 16:21:40 -0400 | |
| commit | d2caf4af7da36f3947eea17656f9c85a6709707c (patch) | |
| tree | 4d6eafa43658007c6c96142a58ffc5c858d3fe61 /src/core/crypto | |
| parent | aes_util: Fix error involving reads of less than 0x10 (diff) | |
| download | yuzu-d2caf4af7da36f3947eea17656f9c85a6709707c.tar.gz yuzu-d2caf4af7da36f3947eea17656f9c85a6709707c.tar.xz yuzu-d2caf4af7da36f3947eea17656f9c85a6709707c.zip | |
game_list: Use RegisteredCacheUnion for installed
Reduces code
Diffstat (limited to 'src/core/crypto')
| -rw-r--r-- | src/core/crypto/ctr_encryption_layer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/crypto/ctr_encryption_layer.cpp b/src/core/crypto/ctr_encryption_layer.cpp index 3ea60dbd0..296fad419 100644 --- a/src/core/crypto/ctr_encryption_layer.cpp +++ b/src/core/crypto/ctr_encryption_layer.cpp | |||
| @@ -21,7 +21,7 @@ size_t CTREncryptionLayer::Read(u8* data, size_t length, size_t offset) const { | |||
| 21 | UpdateIV(base_offset + offset); | 21 | UpdateIV(base_offset + offset); |
| 22 | std::vector<u8> raw = base->ReadBytes(length, offset); | 22 | std::vector<u8> raw = base->ReadBytes(length, offset); |
| 23 | cipher.Transcode(raw.data(), raw.size(), data, Op::Decrypt); | 23 | cipher.Transcode(raw.data(), raw.size(), data, Op::Decrypt); |
| 24 | return raw.size(); | 24 | return length; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | // offset does not fall on block boundary (0x10) | 27 | // offset does not fall on block boundary (0x10) |