This commit is contained in:
georgemoralis 2025-02-27 10:04:08 +02:00
parent aa56e601dc
commit c63b1a058c
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace Libraries::Font {
struct OrbisFontTextCharacter { struct OrbisFontTextCharacter {
// Other fields... // Other fields...
u8 bidiLevel; // Assuming the field at offset 0x3B stores the Bidi level u8 bidiLevel; // Assuming the field at offset 0x3B stores the Bidi level
} FontCharacter; };
s32 PS4_SYSV_ABI sceFontAttachDeviceCacheBuffer(); s32 PS4_SYSV_ABI sceFontAttachDeviceCacheBuffer();
s32 PS4_SYSV_ABI sceFontBindRenderer(); s32 PS4_SYSV_ABI sceFontBindRenderer();

View File

@ -3,8 +3,8 @@
#include "common/logging/log.h" #include "common/logging/log.h"
#include "core/libraries/error_codes.h" #include "core/libraries/error_codes.h"
#include "core/libraries/libs.h"
#include "core/libraries/font/fontft.h" #include "core/libraries/font/fontft.h"
#include "core/libraries/libs.h"
namespace Libraries::FontFt { namespace Libraries::FontFt {