From 3312c2567d7785bdac02c31150b4223d83607b18 Mon Sep 17 00:00:00 2001 From: derrod Date: Mon, 19 Aug 2024 04:57:57 +0200 Subject: [PATCH] obs-nvenc: Fix nvenc availability check always returning true --- plugins/obs-nvenc/nvenc-helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/obs-nvenc/nvenc-helpers.c b/plugins/obs-nvenc/nvenc-helpers.c index a07d6ff27..455831e7d 100644 --- a/plugins/obs-nvenc/nvenc-helpers.c +++ b/plugins/obs-nvenc/nvenc-helpers.c @@ -381,7 +381,7 @@ fail: dstr_free(&caps_str); os_process_args_destroy(args); - return true; + return success; } static const char *nvenc_check_name = "nvenc_check";