Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Mar 2021 09:07:21 GMT
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 99e1b2d79868 - stable/13 - loader_4th: brand image is aligned right
Message-ID:  <202103060907.12697LWC076689@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by tsoome:

URL: https://cgit.FreeBSD.org/src/commit/?id=99e1b2d79868eb8bad371b6d4d64fa1aab99fbc4

commit 99e1b2d79868eb8bad371b6d4d64fa1aab99fbc4
Author:     Toomas Soome <tsoome@FreeBSD.org>
AuthorDate: 2021-03-06 08:54:08 +0000
Commit:     Toomas Soome <tsoome@FreeBSD.org>
CommitDate: 2021-03-06 09:06:51 +0000

    loader_4th: brand image is aligned right
    
    With screen border removed, I forgot to update forth brand image
    coordinates to avoid image alignment.
    
    (cherry picked from commit 6a3095aa6d0350dda89bac66d26f22a01e2257c4)
---
 stand/forth/brand-fbsd.4th | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/forth/brand-fbsd.4th b/stand/forth/brand-fbsd.4th
index b8e43e601c96..84245ef232b6 100644
--- a/stand/forth/brand-fbsd.4th
+++ b/stand/forth/brand-fbsd.4th
@@ -38,7 +38,7 @@
 		s" term-putimage" sfind if
 			\ note, we use 0, 0 for image upper left as origin,
 			\ and 0, 7 for lower right to preserve aspect ratio
-			>r 0 0 0 0 7
+			>r 0 1 1 0 7
 			s" /boot/images/freebsd-brand-rev.png"
 			r> execute if 2drop exit then
 		else



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