From c63b1a058c2f3580e2b1429e5a57c1a7bd4e4a50 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 27 Feb 2025 10:04:08 +0200 Subject: [PATCH] fixup --- src/core/libraries/font/font.h | 2 +- src/core/libraries/font/fontft.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/libraries/font/font.h b/src/core/libraries/font/font.h index 25a77de56..3debcf1e8 100644 --- a/src/core/libraries/font/font.h +++ b/src/core/libraries/font/font.h @@ -14,7 +14,7 @@ namespace Libraries::Font { struct OrbisFontTextCharacter { // Other fields... u8 bidiLevel; // Assuming the field at offset 0x3B stores the Bidi level -} FontCharacter; +}; s32 PS4_SYSV_ABI sceFontAttachDeviceCacheBuffer(); s32 PS4_SYSV_ABI sceFontBindRenderer(); diff --git a/src/core/libraries/font/fontft.cpp b/src/core/libraries/font/fontft.cpp index 6ede339f0..0b67907de 100644 --- a/src/core/libraries/font/fontft.cpp +++ b/src/core/libraries/font/fontft.cpp @@ -3,8 +3,8 @@ #include "common/logging/log.h" #include "core/libraries/error_codes.h" -#include "core/libraries/libs.h" #include "core/libraries/font/fontft.h" +#include "core/libraries/libs.h" namespace Libraries::FontFt {