aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Zarychta <zarychtam@plan-b.pwste.edu.pl>2025-05-29 16:36:57 +0000
committerWarner Losh <imp@FreeBSD.org>2026-03-25 19:22:52 +0000
commit9ac7e0362a2490f5de0e23507cc5159cc03a3334 (patch)
tree54a4e55e61da27f51b8448be84fad4b16fc296f9
parente3b801edded92c1ccef67f9aef8653e996493460 (diff)
loader: Fix beastie and fbsdbw logo positions
Fix the beaste, beastiebw and fbsdbw postions broken after ee233742a569 PR: 285044, 286356 Fixes: 1b4e11713153 Reviewed by: imp MFC After: 2 days (14.3 candiate) Sponsored by: PANS Jarosław (cherry picked from commit 9486d6d57d14844972ee63382045e2ed7a300963)
-rw-r--r--stand/lua/gfx-beastie.lua1
-rw-r--r--stand/lua/gfx-beastiebw.lua1
-rw-r--r--stand/lua/gfx-fbsdbw.lua2
3 files changed, 3 insertions, 1 deletions
diff --git a/stand/lua/gfx-beastie.lua b/stand/lua/gfx-beastie.lua
index 443f0fd888ba..f91e70667dac 100644
--- a/stand/lua/gfx-beastie.lua
+++ b/stand/lua/gfx-beastie.lua
@@ -49,5 +49,6 @@ return {
" `--{__________)\027[m",
},
requires_color = true,
+ shift = {x = 2, y = -5},
}
}
diff --git a/stand/lua/gfx-beastiebw.lua b/stand/lua/gfx-beastiebw.lua
index c71e53a9c4e3..84e3dc6997df 100644
--- a/stand/lua/gfx-beastiebw.lua
+++ b/stand/lua/gfx-beastiebw.lua
@@ -48,5 +48,6 @@ return {
" ,' ,-----' |",
" `--{__________)",
},
+ shift = {x = 2, y = -5},
}
}
diff --git a/stand/lua/gfx-fbsdbw.lua b/stand/lua/gfx-fbsdbw.lua
index 470af71a07b5..df3b6c856eef 100644
--- a/stand/lua/gfx-fbsdbw.lua
+++ b/stand/lua/gfx-fbsdbw.lua
@@ -42,6 +42,6 @@ return {
" | | | |",
" |____/|_____/|_____/",
},
- shift = {x = 5, y = 4},
+ shift = {x = 7, y = -1},
}
}