summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/system_archive
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2020-06-17 13:27:41 +0200
committerMerryMage <MerryMage@users.noreply.github.com>2020-06-18 16:47:44 +0200
commit4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f (patch)
tree9d5a2f3300eead8278a3e8399002cef029dd24b5 /src/core/file_sys/system_archive
parentvk_rasterizer: BindTransformFeedbackBuffersEXT accepts a size of type VkDeviceSize (diff)
downloadyuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.gz
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.bz2
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.lz
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.xz
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.tar.zst
yuzu-4f09f0aea4f31d381f727e9d6a79ee04ab8ac44f.zip
Diffstat (limited to 'src/core/file_sys/system_archive')
-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)
std::vector<u8> bfttf(Size + sizeof(u64));
- u64 offset = 0;
+ size_t offset = 0;
Service::NS::EncryptSharedFont(vec, bfttf, offset);
return std::make_shared<VectorVfsFile>(std::move(bfttf), name);
}