Author: dumbbell
Date: Sun Aug 24 09:47:39 2014
New Revision: 270448
URL: http://svnweb.freebsd.org/changeset/base/270448

Log:
  vt(4): Fix order of arguments (x <-> y) when showing the splash screen
  
  MFC after:    1 week

Modified:
  head/sys/dev/vt/vt_core.c

Modified: head/sys/dev/vt/vt_core.c
==============================================================================
--- head/sys/dev/vt/vt_core.c   Sun Aug 24 09:24:37 2014        (r270447)
+++ head/sys/dev/vt/vt_core.c   Sun Aug 24 09:47:39 2014        (r270448)
@@ -1015,7 +1015,7 @@ vtterm_splash(struct vt_device *vd)
                        /* XXX: Unhardcode colors! */
                        vd->vd_driver->vd_bitblt_bmp(vd, vd->vd_curwindow,
                            vt_logo_image, NULL, vt_logo_width, vt_logo_height,
-                           top, left, TC_WHITE, TC_BLACK);
+                           left, top, TC_WHITE, TC_BLACK);
                }
                vd->vd_flags |= VDF_SPLASH;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to