mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +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
|
|
@ -5,7 +5,7 @@
|
|||
#include "Utilities/rTime.h"
|
||||
#include "cellRtc.h"
|
||||
|
||||
extern Module cellRtc;
|
||||
extern Module<> cellRtc;
|
||||
|
||||
s64 convertToUNIXTime(u16 seconds, u16 minutes, u16 hours, u16 days, s32 years)
|
||||
{
|
||||
|
|
@ -445,7 +445,7 @@ s32 cellRtcCompareTick(vm::ptr<CellRtcTick> pTick0, vm::ptr<CellRtcTick> pTick1)
|
|||
else return CELL_OK;
|
||||
}
|
||||
|
||||
Module cellRtc("cellRtc", []()
|
||||
Module<> cellRtc("cellRtc", []()
|
||||
{
|
||||
REG_FUNC(cellRtc, cellRtcGetCurrentTick);
|
||||
REG_FUNC(cellRtc, cellRtcGetCurrentClock);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue