[2021/01/18-Inchar] A little change

This commit is contained in:
Rintim 2021-01-18 13:09:02 +08:00
parent 0965ea40a4
commit f654403b62
3 changed files with 3 additions and 3 deletions

View File

@ -431,7 +431,7 @@ void screen_get_texture_size(u32* width, u32* height, u32 id) {
void screen_begin_frame() {
if(!C3D_FrameBegin(C3D_FRAME_SYNCDRAW)) {
error_panic("无法启动相.");
error_panic("无法启动相.");
return;
}
}

View File

@ -150,7 +150,7 @@ static void ui_draw_top(ui_view* ui) {
screen_set_base_alpha(ui_fade_alpha);
char verText[64];
snprintf(verText, 64, "\nVer. %d.%d.%d\n(Chinese Build 9)", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO);
snprintf(verText, 64, "Ver. %d.%d.%dC9", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO);
float verWidth;
float verHeight;

View File

@ -7,7 +7,7 @@
#include "section.h"
#include "../core/core.h"
static list_item sd = {"SD 卡", COLOR_TEXT, files_open_sd};
static list_item sd = {"(Micro) SD 卡", COLOR_TEXT, files_open_sd};
static list_item ctr_nand = {"CTR NAND", COLOR_TEXT, files_open_ctr_nand};
static list_item twl_nand = {"TWL NAND", COLOR_TEXT, files_open_twl_nand};
static list_item twl_photo = {"TWL 照片", COLOR_TEXT, files_open_twl_photo};