From bb8afa9324ba0572150bf6cae812b7e904cd778b Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Mon, 18 Dec 2017 11:27:55 +0100 Subject: [PATCH] Fix comment about data sent over the socket We now send the device name in addition to the screen dimensions on the socket. Update the comment accordingly. --- app/src/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/screen.c b/app/src/screen.c index 7a48c2ad..7a834f57 100644 --- a/app/src/screen.c +++ b/app/src/screen.c @@ -283,7 +283,7 @@ SDL_bool show_screen(const char *serial, Uint16 local_port) { decoder.video_socket = device_socket; decoder.skip_frames = SDL_TRUE; - // now we consumed the width and height values, the socket receives the video stream + // now we consumed the header values, the socket receives the video stream // start the decoder if (!decoder_start(&decoder)) { ret = SDL_FALSE;