mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +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
|
|
@ -2,7 +2,7 @@
|
|||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/SysCalls/Modules.h"
|
||||
|
||||
extern Module cellKey2char;
|
||||
extern Module<> cellKey2char;
|
||||
|
||||
// Return Codes
|
||||
enum
|
||||
|
|
@ -46,7 +46,7 @@ s32 cellKey2CharSetArrangement()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
Module cellKey2char("cellKey2char", []()
|
||||
Module<> cellKey2char("cellKey2char", []()
|
||||
{
|
||||
REG_FUNC(cellKey2char, cellKey2CharOpen);
|
||||
REG_FUNC(cellKey2char, cellKey2CharClose);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue