From d1642cbcbab2a48d8b8f324b9b22f51dce3d4954 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 27 Feb 2016 15:17:14 -0800 Subject: [PATCH] GUAC-236: Cursor must be ignored for now (no mouse position information in recording). --- src/guacenc/instruction-cursor.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/guacenc/instruction-cursor.c b/src/guacenc/instruction-cursor.c index dc66c896..bccbacb3 100644 --- a/src/guacenc/instruction-cursor.c +++ b/src/guacenc/instruction-cursor.c @@ -45,10 +45,11 @@ int guacenc_handle_cursor(guacenc_display* display, int argc, char** argv) { int src_w = atoi(argv[5]); int src_h = atoi(argv[6]); - /* STUB */ - guacenc_log(GUAC_LOG_DEBUG, "cursor: hotspot (%i, %i) " + /* Nothing to do with cursor (yet) */ + guacenc_log(GUAC_LOG_DEBUG, "Ignoring cursor: hotspot (%i, %i) " "src_layer=%i (%i, %i) %ix%i", hotspot_x, hotspot_y, src_index, src_x, src_y, src_w, src_h); + return 0; }