summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar MerryMage2020-06-17 12:27:41 +0100
committerGravatar MerryMage2020-06-18 15:47:44 +0100
commit4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f (patch)
tree9d5a2f3300eead8278a3e8399002cef029dd24b5 /src
parentvk_rasterizer: BindTransformFeedbackBuffersEXT accepts a size of type VkDevic... (diff)
downloadyuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.gz
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.xz
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.zip
shared_font: Service::NS::EncryptSharedFont takes a size_t&
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/system_archive/shared_font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/system_archive/shared_font.cpp b/src/core/file_sys/system_archive/shared_font.cpp
index 2c05eb42e..c5cdf7d9b 100644
--- a/src/core/file_sys/system_archive/shared_font.cpp
+++ b/src/core/file_sys/system_archive/shared_font.cpp
@@ -23,7 +23,7 @@ VirtualFile PackBFTTF(const std::array<u8, Size>& data, const std::string& name)
23 23
24 std::vector<u8> bfttf(Size + sizeof(u64)); 24 std::vector<u8> bfttf(Size + sizeof(u64));
25 25
26 u64 offset = 0; 26 size_t offset = 0;
27 Service::NS::EncryptSharedFont(vec, bfttf, offset); 27 Service::NS::EncryptSharedFont(vec, bfttf, offset);
28 return std::make_shared<VectorVfsFile>(std::move(bfttf), name); 28 return std::make_shared<VectorVfsFile>(std::move(bfttf), name);
29} 29}