From: Jason Rumney Date: Thu, 21 Jun 2007 22:01:27 +0000 (+0000) Subject: (convert_mono_to_color_image): Swap fore and background. X-Git-Tag: emacs-pretest-22.1.90~1329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bfe7f3fcfc145e0915b35edc1c84f955b93599db;p=emacs.git (convert_mono_to_color_image): Swap fore and background. --- diff --git a/src/image.c b/src/image.c index ebb73e3996e..a032a7f5b62 100644 --- a/src/image.c +++ b/src/image.c @@ -3044,8 +3044,8 @@ static void convert_mono_to_color_image (f, img, foreground, background) release_frame_dc (f, hdc); old_prev = SelectObject (old_img_dc, img->pixmap); new_prev = SelectObject (new_img_dc, new_pixmap); - SetTextColor (new_img_dc, foreground); - SetBkColor (new_img_dc, background); + SetTextColor (new_img_dc, background); + SetBkColor (new_img_dc, foreground); BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc, 0, 0, SRCCOPY);