hot-fix: debug build fixed
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

This commit is contained in:
psucien 2024-12-01 15:46:08 +01:00
parent b00a321b5e
commit 4a5850628e
2 changed files with 7 additions and 6 deletions

View file

@ -94,8 +94,8 @@ s32 PS4_SYSV_ABI scePngDecDecode(OrbisPngDecHandle handle, const OrbisPngDecDeco
LOG_TRACE(Lib_Png, LOG_TRACE(Lib_Png,
"pngMemSize = {} , imageMemSize = {} , pixelFormat = {} , alphaValue = {} , " "pngMemSize = {} , imageMemSize = {} , pixelFormat = {} , alphaValue = {} , "
"imagePitch = {}", "imagePitch = {}",
param->pngMemSize, param->imageMemSize, param->pixelFormat, param->alphaValue, param->png_mem_size, param->image_mem_size, int(param->pixel_format),
param->imagePitch); param->alpha_value, param->image_pitch);
auto pngh = (PngHandler*)handle; auto pngh = (PngHandler*)handle;
@ -240,8 +240,8 @@ s32 PS4_SYSV_ABI scePngDecParseHeader(const OrbisPngDecParseParam* param,
LOG_TRACE( LOG_TRACE(
Lib_Png, Lib_Png,
"imageWidth = {} , imageHeight = {} , colorSpace = {} , bitDepth = {} , imageFlag = {}", "imageWidth = {} , imageHeight = {} , colorSpace = {} , bitDepth = {} , imageFlag = {}",
imageInfo->imageWidth, imageInfo->imageHeight, imageInfo->colorSpace, imageInfo->bitDepth, imageInfo->image_width, imageInfo->image_height, int(imageInfo->color_space),
imageInfo->imageFlag); imageInfo->bit_depth, int(imageInfo->image_flag));
return ORBIS_OK; return ORBIS_OK;
} }

View file

@ -195,8 +195,9 @@ s32 PS4_SYSV_ABI sceVideoOutGetFlipStatus(s32 handle, FlipStatus* status) {
LOG_TRACE(Lib_VideoOut, LOG_TRACE(Lib_VideoOut,
"count = {}, processTime = {}, tsc = {}, submitTsc = {}, flipArg = {}, gcQueueNum = " "count = {}, processTime = {}, tsc = {}, submitTsc = {}, flipArg = {}, gcQueueNum = "
"{}, flipPendingNum = {}, currentBuffer = {}", "{}, flipPendingNum = {}, currentBuffer = {}",
status->count, status->processTime, status->tsc, status->submitTsc, status->flipArg, status->count, status->process_time, status->tsc, status->submit_tsc,
status->gcQueueNum, status->flipPendingNum, status->currentBuffer); status->flip_arg, status->gc_queue_num, status->flip_pending_num,
status->current_buffer);
return ORBIS_OK; return ORBIS_OK;
} }