From 0e9313d2dfd600ae1d540eb6fe956608e55ba9af Mon Sep 17 00:00:00 2001 From: scribam Date: Fri, 29 Mar 2019 22:46:57 +0100 Subject: [PATCH] hle: Add cellFontInitLibraryFreeType function --- rpcs3/Emu/Cell/Modules/cellFontFT.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rpcs3/Emu/Cell/Modules/cellFontFT.cpp b/rpcs3/Emu/Cell/Modules/cellFontFT.cpp index 41051c0c5a..97c84f639f 100644 --- a/rpcs3/Emu/Cell/Modules/cellFontFT.cpp +++ b/rpcs3/Emu/Cell/Modules/cellFontFT.cpp @@ -5,6 +5,12 @@ LOG_CHANNEL(cellFontFT); +s32 cellFontInitLibraryFreeType() +{ + UNIMPLEMENTED_FUNC(cellFontFT); + return CELL_OK; +} + s32 cellFontInitLibraryFreeTypeWithRevision(u64 revisionFlags, vm::ptr config, vm::pptr lib) { cellFontFT.warning("cellFontInitLibraryFreeTypeWithRevision(revisionFlags=0x%llx, config=*0x%x, lib=**0x%x)", revisionFlags, config, lib); @@ -202,6 +208,7 @@ s32 FTManager_OpenStreamFace() DECLARE(ppu_module_manager::cellFontFT)("cellFontFT", []() { + REG_FUNC(cellFontFT, cellFontInitLibraryFreeType); REG_FUNC(cellFontFT, cellFontInitLibraryFreeTypeWithRevision); REG_FUNC(cellFontFT, cellFontFTGetRevisionFlags); REG_FUNC(cellFontFT, cellFontFTGetInitializedRevisionFlags);