From c8907b8ab8fa072b0407abbbcfd17bd225c7dcc5 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 4 Oct 2022 20:32:23 -0500 Subject: [PATCH] Add special error text for ML_ERROR_FRAME_CONVERSION --- Limelight/ViewControllers/StreamFrameViewController.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Limelight/ViewControllers/StreamFrameViewController.m b/Limelight/ViewControllers/StreamFrameViewController.m index ed54606..a4bb50e 100644 --- a/Limelight/ViewControllers/StreamFrameViewController.m +++ b/Limelight/ViewControllers/StreamFrameViewController.m @@ -431,6 +431,11 @@ message = @"Something went wrong on your host PC when starting the stream.\n\nMake sure you don't have any DRM-protected content open on your host PC. You can also try restarting your host PC.\n\nIf the issue persists, try reinstalling your GPU drivers and GeForce Experience."; break; + case ML_ERROR_FRAME_CONVERSION: + title = @"Connection Error"; + message = @"The host PC reported a fatal video encoding error.\n\nTry disabling HDR mode, changing the streaming resolution, or changing your host PC's display resolution."; + break; + default: title = @"Connection Terminated"; message = @"The connection was terminated";