From 2d5328fc241fe44444c316490012b637b7b838bc Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 13 Feb 2015 17:07:14 -0500 Subject: [PATCH] Pass through the correct refresh rate now that people are doing sensible things with it --- .../src/com/limelight/nvstream/av/video/VideoStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java index f5285bd4..2b99439d 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java +++ b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java @@ -122,7 +122,7 @@ public class VideoStream { if (decRend != null) { try { if (!decRend.setup(context.streamConfig.getWidth(), context.streamConfig.getHeight(), - 60, renderTarget, drFlags)) { + context.streamConfig.getRefreshRate(), renderTarget, drFlags)) { return false; }