From 8fab161a3fdfea76ba7479a773d1c34fd86c36fe Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 7 Mar 2013 19:15:37 -0800 Subject: [PATCH] webpmux: correct -frame param order in help output params were reordered to +duration+x offset+... Change-Id: I99e8a70c8a645552238294ab82c3f7ffe01e70bd --- examples/webpmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/webpmux.c b/examples/webpmux.c index 69603fea..a0f08ec1 100644 --- a/examples/webpmux.c +++ b/examples/webpmux.c @@ -317,10 +317,10 @@ static void PrintHelp(void) { printf("\n"); printf("FRAME_OPTIONS(i):\n"); printf(" Create animation.\n"); - printf(" file_i +xi+yi+di+mi\n"); + printf(" file_i +di+xi+yi+mi\n"); printf(" where: 'file_i' is the i'th animation frame (WebP format),\n"); - printf(" 'xi','yi' specify the image offset for this frame.\n"); printf(" 'di' is the pause duration before next frame.\n"); + printf(" 'xi','yi' specify the image offset for this frame.\n"); printf(" 'mi' is the dispose method for this frame (0 or 1).\n"); printf("\n");