diff --git a/source/core/ui/error.c b/source/core/ui/error.c index 84de1b7f..77c64049 100644 --- a/source/core/ui/error.c +++ b/source/core/ui/error.c @@ -754,7 +754,7 @@ ui_view* error_display_res(void* data, void (*drawTop)(ui_view* view, void* data int module = R_MODULE(result); int description = R_DESCRIPTION(result); - snprintf(errorData->fullText, 4096, "%s\错误代码: 0x%08lX\n等级: %s (%d)\n摘要: %s (%d)\n模组: %s (%d)\n描述: %s (%d)", textBuf, result, level_to_string(result), level, summary_to_string(result), summary, module_to_string(result), module, description_to_string(result), description); + snprintf(errorData->fullText, 4096, "%s\n错误代码: 0x%08lX\n等级: %s (%d)\n摘要: %s (%d)\n模组: %s (%d)\n描述: %s (%d)", textBuf, result, level_to_string(result), level, summary_to_string(result), summary, module_to_string(result), module, description_to_string(result), description); return prompt_display_notify("错误", errorData->fullText, COLOR_TEXT, errorData, error_draw_top, error_onresponse); } @@ -782,4 +782,4 @@ ui_view* error_display_errno(void* data, void (*drawTop)(ui_view* view, void* da snprintf(errorData->fullText, 4096, "%s\nI/O Error: %s (%d)", textBuf, strerror(err), err); return prompt_display_notify("错误", errorData->fullText, COLOR_TEXT, errorData, error_draw_top, error_onresponse); -} \ No newline at end of file +}