From f95edd27e0dde1ea26e94152ac3c6c12ed42ffaf Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Wed, 20 May 2026 08:31:23 +0200 Subject: [PATCH] major skill issue (#4451) --- src/core/libraries/camera/camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/libraries/camera/camera.cpp b/src/core/libraries/camera/camera.cpp index 67b3ea9f6..830a51d1f 100644 --- a/src/core/libraries/camera/camera.cpp +++ b/src/core/libraries/camera/camera.cpp @@ -329,7 +329,7 @@ s32 PS4_SYSV_ABI sceCameraGetExposureGain(s32 handle, OrbisCameraChannel channel // Return default parameters exposure_gain->exposureControl = 0; - exposure_gain->exposure = 83; + exposure_gain->exposure = 20; exposure_gain->gain = 100; exposure_gain->mode = 0; return ORBIS_OK; @@ -1007,7 +1007,7 @@ s32 PS4_SYSV_ABI sceCameraStart(s32 handle, OrbisCameraStartParameter* param) { if (!g_library_opened) { return ORBIS_CAMERA_ERROR_NOT_OPEN; } - if (g_firmware_version >= Common::ElfInfo::FW_250 && + if (g_firmware_version <= Common::ElfInfo::FW_250 && (param->formatLevel[0] >= 0xf || param->formatLevel[1] >= 0xf || (param->formatLevel[0] | param->formatLevel[1]) == 0)) { return ORBIS_CAMERA_ERROR_FORMAT_UNKNOWN;