Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Aug 2014 09:47:40 +0000 (UTC)
From:      Jean-Sebastien Pedron <dumbbell@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270448 - head/sys/dev/vt
Message-ID:  <201408240947.s7O9leNL002970@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408240947.s7O9leNL002970>