View | Details | Raw Unified | Return to bug 255299
Collapse All | Expand All

(-)stand/forth/menu.4th (-1 / +5 lines)
Lines 490-496 also menu-infrastructure definitions Link Here
490
		menuX @ 19 + over 2 / - menuY @ 1-
490
		menuX @ 19 + over 2 / - menuY @ 1-
491
	then
491
	then
492
	swap 1- swap
492
	swap 1- swap
493
	at-xy space type space
493
	at-xy dup 0= if
494
		2drop ( empty loader_menu_title )
495
	else
496
		space type space
497
	then
494
498
495
	\ If $menu_init is set, evaluate it (allowing for whole menus to be
499
	\ If $menu_init is set, evaluate it (allowing for whole menus to be
496
	\ constructed dynamically -- as this function could conceivably set
500
	\ constructed dynamically -- as this function could conceivably set
(-)stand/lua/drawer.lua (-1 / +4 lines)
Lines 286-292 local function drawbox() Link Here
286
		menu_header_x = x + (w // 2) - (#menu_header // 2)
286
		menu_header_x = x + (w // 2) - (#menu_header // 2)
287
	end
287
	end
288
	screen.setcursor(menu_header_x - 1, y)
288
	screen.setcursor(menu_header_x - 1, y)
289
	printc(" " .. menu_header .. " ")
289
	if menu_header ~= "" then
290
		printc(" " .. menu_header .. " ")
291
	end
292
290
end
293
end
291
294
292
local function drawbrand()
295
local function drawbrand()

Return to bug 255299