From 13654ca1df8bd4b6de6b7867e66dedc5f9f9780d Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Sun, 31 Aug 2025 21:45:59 +0000 Subject: Polishes `hsm-cam` even more --- hsm-cam/FFI/Cam.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hsm-cam/FFI') diff --git a/hsm-cam/FFI/Cam.cpp b/hsm-cam/FFI/Cam.cpp index bfdecf6..4c21e7f 100644 --- a/hsm-cam/FFI/Cam.cpp +++ b/hsm-cam/FFI/Cam.cpp @@ -83,7 +83,7 @@ allocate_frame_buffer() g_config = g_camera->generateConfiguration({ StreamRole::StillCapture }); g_config->at(0).size.width = FRAME_WIDTH; g_config->at(0).size.height = FRAME_HEIGHT; - g_config->at(0).pixelFormat = formats::RGB888; + g_config->at(0).pixelFormat = formats::BGR888; logMsg(Info, "Generated camera configuration: {}", g_config->at(0).toString()); g_camera->configure(g_config.get()); -- cgit v1.2.1