mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 05:45:21 +00:00
Experimental class template Module<T>
Allocates ps3 memory for specific instance T
This commit is contained in:
parent
093ecc0a02
commit
12f36cf31f
123 changed files with 494 additions and 379 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "cellFontFT.h"
|
||||
|
||||
extern Module cellFontFT;
|
||||
extern Module<> cellFontFT;
|
||||
|
||||
s32 cellFontInitLibraryFreeTypeWithRevision(u64 revisionFlags, vm::ptr<CellFontLibraryConfigFT> config, vm::pptr<CellFontLibrary> lib)
|
||||
{
|
||||
|
|
@ -27,7 +27,7 @@ s32 cellFontFTGetInitializedRevisionFlags()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
Module cellFontFT("cellFontFT", []()
|
||||
Module<> cellFontFT("cellFontFT", []()
|
||||
{
|
||||
REG_FUNC(cellFontFT, cellFontInitLibraryFreeTypeWithRevision);
|
||||
REG_FUNC(cellFontFT, cellFontFTGetRevisionFlags);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue