View | Details | Raw Unified | Return to bug 255202 | Differences between
and this patch

Collapse All | Expand All

(-)b/stand/lua/drawer.lua (-2 / +3 lines)
Lines 311-317 local function drawbrand() Link Here
311
	if core.isFramebufferConsole() and
311
	if core.isFramebufferConsole() and
312
	    loader.term_putimage ~= nil and
312
	    loader.term_putimage ~= nil and
313
	    branddef.image ~= nil then
313
	    branddef.image ~= nil then
314
		if loader.term_putimage(branddef.image, 1, 1, 0, 7, 0)
314
		if loader.term_putimage(branddef.image, x, y, 0, 7, 0)
315
		then
315
		then
316
			return true
316
			return true
317
		end
317
		end
Lines 514-519 function drawer.drawscreen(menudef) Link Here
514
	-- it determines the positions of other elements
514
	-- it determines the positions of other elements
515
	drawitem(drawlogo)
515
	drawitem(drawlogo)
516
	drawitem(drawbrand)
516
	drawitem(drawbrand)
517
	-- clear the twiddle
518
	print(" ")
517
	drawitem(drawbox)
519
	drawitem(drawbox)
518
	return drawmenu(menudef)
520
	return drawmenu(menudef)
519
end
521
end
520
- 

Return to bug 255202