gitextract_a0o9p4yg/ ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Makefile ├── README.md ├── meta/ │ ├── banner.xcf │ └── icon.xcf ├── romfs/ │ ├── logo.xcf │ └── textcolor.cfg └── source/ ├── core/ │ ├── default.v.pica │ ├── screen.c │ ├── screen.h │ ├── util.c │ └── util.h ├── locale.c ├── locale.h ├── main.c ├── stb_image/ │ ├── stb_image.c │ └── stb_image.h └── ui/ ├── error.c ├── error.h ├── info.c ├── info.h ├── list.c ├── list.h ├── mainmenu.c ├── mainmenu.h ├── prompt.c ├── prompt.h ├── section/ │ ├── action/ │ │ ├── action.h │ │ ├── change_language.c │ │ ├── change_locale_dir.c │ │ ├── change_region.c │ │ ├── pick_locale_dir.c │ │ └── use_system_default.c │ ├── config.c │ ├── nuke.c │ ├── section.h │ ├── task/ │ │ ├── listtitles.c │ │ ├── task.c │ │ └── task.h │ └── titles.c ├── ui.c └── ui.h