@@ -12,28 +12,28 @@ void* PS4_SYSV_ABI AvPlayer::Allocate(void* handle, u32 alignment, u32 size) {
1212 const auto * const self = reinterpret_cast <AvPlayer*>(handle);
1313 const auto allocate = self->m_init_data_original .memory_replacement .allocate ;
1414 const auto ptr = self->m_init_data_original .memory_replacement .object_ptr ;
15- return Core::ExecuteGuest ( allocate, ptr, alignment, size);
15+ return allocate ( ptr, alignment, size);
1616}
1717
1818void PS4_SYSV_ABI AvPlayer::Deallocate (void * handle, void * memory) {
1919 const auto * const self = reinterpret_cast <AvPlayer*>(handle);
2020 const auto deallocate = self->m_init_data_original .memory_replacement .deallocate ;
2121 const auto ptr = self->m_init_data_original .memory_replacement .object_ptr ;
22- return Core::ExecuteGuest ( deallocate, ptr, memory);
22+ return deallocate ( ptr, memory);
2323}
2424
2525void * PS4_SYSV_ABI AvPlayer::AllocateTexture (void * handle, u32 alignment, u32 size) {
2626 const auto * const self = reinterpret_cast <AvPlayer*>(handle);
2727 const auto allocate = self->m_init_data_original .memory_replacement .allocate_texture ;
2828 const auto ptr = self->m_init_data_original .memory_replacement .object_ptr ;
29- return Core::ExecuteGuest ( allocate, ptr, alignment, size);
29+ return allocate ( ptr, alignment, size);
3030}
3131
3232void PS4_SYSV_ABI AvPlayer::DeallocateTexture (void * handle, void * memory) {
3333 const auto * const self = reinterpret_cast <AvPlayer*>(handle);
3434 const auto deallocate = self->m_init_data_original .memory_replacement .deallocate_texture ;
3535 const auto ptr = self->m_init_data_original .memory_replacement .object_ptr ;
36- return Core::ExecuteGuest ( deallocate, ptr, memory);
36+ return deallocate ( ptr, memory);
3737}
3838
3939int PS4_SYSV_ABI AvPlayer::OpenFile (void * handle, const char * filename) {
@@ -42,7 +42,7 @@ int PS4_SYSV_ABI AvPlayer::OpenFile(void* handle, const char* filename) {
4242
4343 const auto open = self->m_init_data_original .file_replacement .open ;
4444 const auto ptr = self->m_init_data_original .file_replacement .object_ptr ;
45- return Core::ExecuteGuest ( open, ptr, filename);
45+ return open ( ptr, filename);
4646}
4747
4848int PS4_SYSV_ABI AvPlayer::CloseFile (void * handle) {
@@ -51,7 +51,7 @@ int PS4_SYSV_ABI AvPlayer::CloseFile(void* handle) {
5151
5252 const auto close = self->m_init_data_original .file_replacement .close ;
5353 const auto ptr = self->m_init_data_original .file_replacement .object_ptr ;
54- return Core::ExecuteGuest ( close, ptr);
54+ return close ( ptr);
5555}
5656
5757int PS4_SYSV_ABI AvPlayer::ReadOffsetFile (void * handle, u8 * buffer, u64 position, u32 length) {
@@ -60,7 +60,7 @@ int PS4_SYSV_ABI AvPlayer::ReadOffsetFile(void* handle, u8* buffer, u64 position
6060
6161 const auto read_offset = self->m_init_data_original .file_replacement .read_offset ;
6262 const auto ptr = self->m_init_data_original .file_replacement .object_ptr ;
63- return Core::ExecuteGuest ( read_offset, ptr, buffer, position, length);
63+ return read_offset ( ptr, buffer, position, length);
6464}
6565
6666u64 PS4_SYSV_ABI AvPlayer::SizeFile (void * handle) {
@@ -69,7 +69,7 @@ u64 PS4_SYSV_ABI AvPlayer::SizeFile(void* handle) {
6969
7070 const auto size = self->m_init_data_original .file_replacement .size ;
7171 const auto ptr = self->m_init_data_original .file_replacement .object_ptr ;
72- return Core::ExecuteGuest ( size, ptr);
72+ return size ( ptr);
7373}
7474
7575AvPlayerInitData AvPlayer::StubInitData (const AvPlayerInitData& data) {
0 commit comments