diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-06-23 17:20:32 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-07-11 13:36:41 -0700 |
commit | 8e36165c43072a592b4ac9e122c8fc6e4555b915 (patch) | |
tree | 56f04cd5784d1fa5bffc8233eb177b3b8d9da8bd /recordmydesktop/src/rmd_get_frame.c | |
parent | 451548d4c4a1fcab7a95e8678ca63189a0a3cc93 (diff) |
*: more random formatting cleanups
some theora init error checking fixups snuck in there as well
Diffstat (limited to 'recordmydesktop/src/rmd_get_frame.c')
-rw-r--r-- | recordmydesktop/src/rmd_get_frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recordmydesktop/src/rmd_get_frame.c b/recordmydesktop/src/rmd_get_frame.c index be199c0..aae7d09 100644 --- a/recordmydesktop/src/rmd_get_frame.c +++ b/recordmydesktop/src/rmd_get_frame.c @@ -249,7 +249,7 @@ static void rmdMoveCaptureArea( BRWindow *brwin, * * \param x_offset left x of the recording area * -* \param x_offset upper y of the recording area +* \param y_offset upper y of the recording area * * \param blocknum_x Width of image in blocks * @@ -527,7 +527,7 @@ void *rmdGetFrame(ProgData *pdata) { if (pdata->args.xfixes_cursor || pdata->args.have_dummy_cursor) { int mouse_xoffset, mouse_yoffset; //avoid segfaults - CLIP_DUMMY_POINTER_AREA(mouse_pos_abs,&temp_brwin, &mouse_pos_temp); + CLIP_DUMMY_POINTER_AREA(mouse_pos_abs, &temp_brwin, &mouse_pos_temp); mouse_xoffset=mouse_pos_temp.x-mouse_pos_abs.x; mouse_yoffset=mouse_pos_temp.y-mouse_pos_abs.y; if ((mouse_xoffset<0) || (mouse_xoffset>mouse_pos_abs.width)) |