From 0cfc557c9c12a3365bf023946503f20daea91fae Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 25 Jul 2021 15:01:46 -0500 Subject: [PATCH] Don't fail if SOPS isn't supported at the current resolution --- libgamestream/client.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libgamestream/client.c b/libgamestream/client.c index 8e1e28f..121f3ae 100644 --- a/libgamestream/client.c +++ b/libgamestream/client.c @@ -655,8 +655,6 @@ int gs_start_app(PSERVER_DATA server, STREAM_CONFIGURATION *config, int appId, b if (!correct_mode && !server->unsupported) return GS_NOT_SUPPORTED_MODE; - else if (sops && !supported_resolution) - return GS_NOT_SUPPORTED_SOPS_RESOLUTION; if (config->height >= 2160 && !server->supports4K) return GS_NOT_SUPPORTED_4K;