From a4ad0a9468b7a5f96a76032986ed3bacb393be6c Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 3 Dec 2021 00:45:49 +0100 Subject: [PATCH] cellVideoOutConfigure: treat unknown aspect as AUTO --- rpcs3/Emu/Cell/Modules/cellVideoOut.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp b/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp index 9a16d7723d..5dbcd9b202 100644 --- a/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVideoOut.cpp @@ -197,13 +197,19 @@ error_code cellVideoOutConfigure(u32 videoOut, vm::ptrresolutionId, config->aspect, config->format); + cellSysutil.notice("Selected video configuration: resolutionId=0x%x, aspect=0x%x=>0x%x, format=0x%x", config->resolutionId, config->aspect, conf.aspect, config->format); return CELL_OK; }