From e50df23a0a9704de4d948c44849688c275edb289 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 28 May 2015 08:12:59 -0500 Subject: [PATCH] Don't hardcode 60 FPS --- limelight-common/VideoStream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limelight-common/VideoStream.c b/limelight-common/VideoStream.c index 22689e8..546f7d4 100644 --- a/limelight-common/VideoStream.c +++ b/limelight-common/VideoStream.c @@ -152,7 +152,7 @@ int startVideoStream(void* rendererContext, int drFlags) { int err; callbacks.setup(configuration.width, - configuration.height, 60, rendererContext, drFlags); + configuration.height, configuration.fps, rendererContext, drFlags); // This must be called before the decoder thread starts submitting // decode units