From 27a0c69531bc2702f0b66f879264a070f8c72082 Mon Sep 17 00:00:00 2001 From: Mariotaku Date: Thu, 4 Sep 2025 13:46:55 +0900 Subject: [PATCH] fixed duplicated call for getting panel info --- src/core/webos/SDL_webos_panelinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/webos/SDL_webos_panelinfo.c b/src/core/webos/SDL_webos_panelinfo.c index 616e0ba48920c..62042d09b0c4a 100644 --- a/src/core/webos/SDL_webos_panelinfo.c +++ b/src/core/webos/SDL_webos_panelinfo.c @@ -23,7 +23,7 @@ SDL_bool SDL_webOSGetPanelResolution(int *width, int *height) { } free(response); } - if (SDL_webOSLunaServiceCallSync("luna://com.webos.service.tv.systemproperty/getSystemInfo", + if (!result && SDL_webOSLunaServiceCallSync("luna://com.webos.service.tv.systemproperty/getSystemInfo", "{\"keys\": [\"UHD\"]}", 1, &response) && response != NULL) { jdomparser_ref parser = NULL; jvalue_ref parsed;