From 965d0e6856c63dbf474f89ec38e3dfa84a40ec44 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Wed, 15 Apr 2026 19:26:11 +0200 Subject: [PATCH] Fix comment wording For clarity and grammar. --- .../java/com/genymobile/scrcpy/video/NewDisplayCapture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/com/genymobile/scrcpy/video/NewDisplayCapture.java b/server/src/main/java/com/genymobile/scrcpy/video/NewDisplayCapture.java index 5608d131..254eb945 100644 --- a/server/src/main/java/com/genymobile/scrcpy/video/NewDisplayCapture.java +++ b/server/src/main/java/com/genymobile/scrcpy/video/NewDisplayCapture.java @@ -143,7 +143,7 @@ public class NewDisplayCapture extends SurfaceCapture { // DisplayInfo gives the oriented size (so videoSize includes the display rotation) videoSize = filter.getOutputSize(); - // But the virtual display video always remains in the origin orientation (the video itself is not rotated, so it must rotated manually). + // However, the virtual display video always remains in its original orientation, so it must be rotated manually. // This additional display rotation must not be included in the input events transform (the expected coordinates are already in the // physical display size) if ((displayRotation % 2) == 0) {