From 8d1026d0ccaa5df628a422c8eaa83becf5343adb Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Thu, 22 Sep 2022 21:50:58 +0100 Subject: [PATCH] Reduce font shared memory size for compacted 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 b1b49d81..509496e2 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{0x2547000}; //!< The total size of the font shared memory + static constexpr u32 FontSharedMemSize{0x140A000}; //!< 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 {