From e31ed6a429668c08dc462db76b8757b3d41e907d Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Thu, 22 Sep 2022 21:33:45 +0100 Subject: [PATCH] Increase font shared memory size for Noto fonts --- app/src/main/cpp/skyline/services/pl/shared_font_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/cpp/skyline/services/pl/shared_font_core.h b/app/src/main/cpp/skyline/services/pl/shared_font_core.h index 32be9864..b1b49d81 100644 --- a/app/src/main/cpp/skyline/services/pl/shared_font_core.h +++ b/app/src/main/cpp/skyline/services/pl/shared_font_core.h @@ -12,7 +12,7 @@ namespace skyline::service::pl { * @brief A persistent object for managing the shared memory utilized by shared fonts */ struct SharedFontCore { - static constexpr u32 FontSharedMemSize{0x1100000}; //!< The total size of the font shared memory + static constexpr u32 FontSharedMemSize{0x2547000}; //!< The total size of the font shared memory std::shared_ptr sharedFontMemory; //!< The KSharedMemory that stores the TTF data of all shared fonts struct FontEntry {