From 201294cf18a453c25a2dc20d07ced459d075239d Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Wed, 23 Aug 2023 00:02:24 +0300 Subject: [PATCH] sceVideoOutOpen is not dummy now --- src/Core/PS4/HLE/Graphics/video_out.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Core/PS4/HLE/Graphics/video_out.cpp b/src/Core/PS4/HLE/Graphics/video_out.cpp index 4fedea5e..02d50d5b 100644 --- a/src/Core/PS4/HLE/Graphics/video_out.cpp +++ b/src/Core/PS4/HLE/Graphics/video_out.cpp @@ -1,7 +1,11 @@ #include "video_out.h" +#include #include +#include +#include #include +#include #include #include @@ -9,10 +13,6 @@ #include "Objects/video_out_ctx.h" #include "Util/Singleton.h" -#include -#include -#include -#include namespace HLE::Libs::Graphics::VideoOut { @@ -98,7 +98,7 @@ s32 PS4_SYSV_ABI sceVideoOutGetResolutionStatus(s32 handle, SceVideoOutResolutio return 0; } s32 PS4_SYSV_ABI sceVideoOutOpen(SceUserServiceUserId userId, s32 busType, s32 index, const void* param) { - PRINT_DUMMY_FUNCTION_NAME(); + PRINT_FUNCTION_NAME(); if (userId != SCE_USER_SERVICE_USER_ID_SYSTEM) { BREAKPOINT(); } @@ -117,7 +117,7 @@ s32 PS4_SYSV_ABI sceVideoOutOpen(SceUserServiceUserId userId, s32 busType, s32 i if (handle < 0) { LOG_TRACE_IF(log_file_videoout, "sceVideoOutOpen all available handles are open\n"); - return SCE_VIDEO_OUT_ERROR_RESOURCE_BUSY; //it is alreadyOpened + return SCE_VIDEO_OUT_ERROR_RESOURCE_BUSY; // it is alreadyOpened } return handle;