2020/08/18: Inchar - a little change

This commit is contained in:
Rintim 2020-08-18 19:31:12 +08:00
parent dd07b06783
commit 9c0b1fe374

View File

@ -77,10 +77,10 @@ static const char* button_strings[32] = {
"B", "B",
"Select", "Select",
"Start", "Start",
"D-Pad Right", "十字鍵 右",
"D-Pad Left", "十字鍵 左",
"D-Pad Up", "十字鍵 上",
"D-Pad Down", "十字鍵 下",
"R", "R",
"L", "L",
"X", "X",
@ -97,19 +97,19 @@ static const char* button_strings[32] = {
"", "",
"", "",
"", "",
"C-Stick Right", "C搖桿 右",
"C-Stick Left", "C搖桿 左",
"C-Stick Up", "C搖桿 上",
"C-Stick Down", "C搖桿 下",
"Circle Pad Right", "Circle Pad ",
"Circle Pad Left", "Circle Pad ",
"Circle Pad Up", "Circle Pad ",
"Circle Pad Down" "Circle Pad "
}; };
static void prompt_button_to_string(char* out, size_t size, u32 button) { static void prompt_button_to_string(char* out, size_t size, u32 button) {
if(button == PROMPT_BUTTON_ANY) { if(button == PROMPT_BUTTON_ANY) {
snprintf(out, size, "Any Button"); snprintf(out, size, "任意鍵");
return; return;
} }
@ -158,7 +158,7 @@ ui_view* prompt_display_multi_choice(const char* name, const char* text, u32 col
void (*onResponse)(ui_view* view, void* data, u32 response)) { void (*onResponse)(ui_view* view, void* data, u32 response)) {
prompt_data* promptData = (prompt_data*) calloc(1, sizeof(prompt_data)); prompt_data* promptData = (prompt_data*) calloc(1, sizeof(prompt_data));
if(promptData == NULL) { if(promptData == NULL) {
error_display(NULL, NULL, "Failed to allocate prompt data."); error_display(NULL, NULL, "無法分配提示數據");
return NULL; return NULL;
} }
@ -197,7 +197,9 @@ ui_view* prompt_display_notify(const char* name, const char* text, u32 color, vo
ui_view* prompt_display_yes_no(const char* name, const char* text, u32 color, void* data, void (*drawTop)(ui_view* view, void* data, float x1, float y1, float x2, float y2), ui_view* prompt_display_yes_no(const char* name, const char* text, u32 color, void* data, void (*drawTop)(ui_view* view, void* data, float x1, float y1, float x2, float y2),
void (*onResponse)(ui_view* view, void* data, u32 response)) { void (*onResponse)(ui_view* view, void* data, u32 response)) {
static const char* options[2] = {"Yes", "No"}; static const char* options[2] = {"", ""};
static u32 optionButtons[2] = {KEY_A, KEY_B}; static u32 optionButtons[2] = {KEY_A, KEY_B};
return prompt_display_multi_choice(name, text, color, options, optionButtons, 2, data, drawTop, onResponse); return prompt_display_multi_choice(name, text, color, options, optionButtons, 2, data, drawTop, onResponse);
} }
// オケー