From b10f700f35e0fc9f2ce6f42c9b8e6d83a674fa53 Mon Sep 17 00:00:00 2001 From: Sergiotarxz Date: Mon, 3 Apr 2023 20:24:49 +0200 Subject: [PATCH] Limiting to 15 fps. --- src/packet/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packet/hello.c b/src/packet/hello.c index 462696e..aff21eb 100644 --- a/src/packet/hello.c +++ b/src/packet/hello.c @@ -69,7 +69,7 @@ msThreadCallbackSetFrame(struct mCoreThread *threadContext) { height = 144; } - if (data->numberFrame++ % 2 != 0) { + if (data->numberFrame++ % 4 != 0) { return; }