mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-18 01:28:36 +00:00
memory management refactoring
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
#include "Libs.h"
|
||||
|
||||
#include "LibC.h"
|
||||
#include "LibKernel.h"
|
||||
#include "LibSceVideoOut.h"
|
||||
#include "LibSceGnmDriver.h"
|
||||
#include "LibSceVideoOut.h"
|
||||
|
||||
namespace HLE::Libs {
|
||||
|
||||
void Init_HLE_Libs(SymbolsResolver *sym)
|
||||
{
|
||||
LibC::LibC_Register(sym);
|
||||
LibKernel::LibKernel_Register(sym);
|
||||
LibSceVideoOut::LibSceVideoOut_Register(sym);
|
||||
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
||||
}
|
||||
}
|
||||
void Init_HLE_Libs(SymbolsResolver *sym) {
|
||||
LibC::LibC_Register(sym);
|
||||
LibKernel::LibKernel_Register(sym);
|
||||
LibSceVideoOut::LibSceVideoOut_Register(sym);
|
||||
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
|
||||
}
|
||||
} // namespace HLE::Libs
|
||||
Reference in New Issue
Block a user