From 2326d4a741d6ca72015b40f446ae86b80141b008 Mon Sep 17 00:00:00 2001 From: Ayub Ahmed Date: Sat, 11 Mar 2017 18:37:43 +0600 Subject: [PATCH] create_caption: change color to orange For better visibility. --- graphics/titlepic/create_caption | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/graphics/titlepic/create_caption b/graphics/titlepic/create_caption index 84235620..8cfb8196 100755 --- a/graphics/titlepic/create_caption +++ b/graphics/titlepic/create_caption @@ -19,13 +19,13 @@ draw_with_footer() { output_file=$2; shift; shift - convert $input_file -fill blue -font "$font" +dither -style oblique \ - -pointsize 11 \ - -gravity southwest \ - -draw "text 5,5 'Freedoom, © 2001-2017'" \ - -gravity southeast \ - -draw "text 10,5 '$VERSION'" \ - "$@" \ + convert $input_file -fill orange -font "$font" +dither -style oblique \ + -pointsize 11 \ + -gravity southwest \ + -draw "text 5,5 'Freedoom, © 2001-2017'" \ + -gravity southeast \ + -draw "text 10,5 '$VERSION'" \ + "$@" \ $output_file }