patching sceVideoOut functions

This commit is contained in:
georgemoralis 2023-07-13 18:36:03 +03:00
parent 063a689812
commit 3cbbdd5b2f
5 changed files with 91 additions and 0 deletions

View file

@ -1,6 +1,8 @@
#include "Libs.h"
#include "LibC.h"
#include "LibKernel.h"
#include "LibSceVideoOut.h"
#include "LibSceGnmDriver.h"
namespace HLE::Libs {
@ -8,5 +10,7 @@ namespace HLE::Libs {
{
LibC::LibC_Register(sym);
LibKernel::LibKernel_Register(sym);
LibSceVideoOut::LibSceVideoOut_Register(sym);
LibSceGnmDriver::LibSceGnmDriver_Register(sym);
}
}