From 0172e097f725b0aadf2406797a0639d2fc2ab665 Mon Sep 17 00:00:00 2001 From: Eladash Date: Fri, 11 Oct 2019 21:57:49 +0300 Subject: [PATCH] Fix cellCameraInit (camera_handler::null) --- rpcs3/Emu/Cell/Modules/cellCamera.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellCamera.cpp b/rpcs3/Emu/Cell/Modules/cellCamera.cpp index aee55ab16f..7d8f9394b2 100644 --- a/rpcs3/Emu/Cell/Modules/cellCamera.cpp +++ b/rpcs3/Emu/Cell/Modules/cellCamera.cpp @@ -314,6 +314,7 @@ error_code cellCameraInit() if (g_cfg.io.camera == camera_handler::null) { + g_camera->init = 1; return CELL_OK; } @@ -369,7 +370,6 @@ error_code cellCameraInit() } g_camera->init = 1; - return CELL_OK; }