text revision

This commit is contained in:
cuu
2019-06-27 16:33:18 +08:00
parent e381ae7172
commit 49b7d049a9
7 changed files with 10 additions and 10 deletions

View File

@@ -130,7 +130,7 @@ type GPUDriverPage struct {
func NewGPUDriverPage() *GPUDriverPage {
p := &GPUDriverPage{}
p.ListFont = UI.Fonts["notosanscjk15"]
p.ListFont = UI.Fonts["notosanscjk12"]
p.FootMsg = [5]string{"Nav","","","Back","Select"}
p.BGwidth = UI.Width
@@ -149,8 +149,8 @@ func (self *GPUDriverPage) GenList() {
start_y := 0
last_height := 0
var drivers = [][2]string{[2]string{"fbturbo","Fbturbo"},
[2]string{"modesetting","Lima"}}
var drivers = [][2]string{[2]string{"fbturbo","FBTURBO driver (Software Rendering)"},
[2]string{"modesetting","LIMA driver (Experimental Hardware Rendering)"}}
for _,u := range drivers {

View File

@@ -23,7 +23,7 @@ type LimaPlugin struct {
func (self *LimaPlugin) Init( main_screen *UI.MainScreen ) {
self.GPUDriverPage = NewGPUDriverPage()
self.GPUDriverPage.SetScreen( main_screen)
self.GPUDriverPage.SetName("GPU driver switch")
self.GPUDriverPage.SetName("GPU Driver Switch")
self.GPUDriverPage.Init()
}