mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-02-16 10:30:47 +00:00
Warn about unsupported resolutions in combination with SOPS
When using unsupported resolutions SOPS will default to 720p60
This commit is contained in:
@@ -105,6 +105,8 @@ static void stream(PSERVER_DATA server, PCONFIGURATION config, enum platform sys
|
||||
fprintf(stderr, "Server doesn't support 4K\n");
|
||||
else if (ret == GS_NOT_SUPPORTED_MODE)
|
||||
fprintf(stderr, "Server doesn't support %dx%d (%d fps) or try --unsupported option\n", config->stream.width, config->stream.height, config->stream.fps);
|
||||
else if (ret == GS_NOT_SUPPORTED_SOPS_RESOLUTION)
|
||||
fprintf(stderr, "SOPS isn't supported for the resolution %dx%d, use supported resolution or add --nosops option\n", config->stream.width, config->stream.height);
|
||||
else if (ret == GS_ERROR)
|
||||
fprintf(stderr, "Gamestream error: %s\n", gs_error);
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user