svn commit: r270448 - head/sys/dev/vt

Jean-Sebastien Pedron dumbbell at FreeBSD.org
Sun Aug 24 09:47:40 UTC 2014


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;
 	}


More information about the svn-src-head mailing list