Skip to content

Commit

Permalink
refactor: UI 文本
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLHy0424 committed Sep 17, 2024
1 parent 34689a1 commit 94066dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ auto main(i32 argc,i8 *argv[])->i32{
std::thread{Mod::frontShow}.detach();
}
CUI ui;
ui.add(" [ 主 页 ]\n\n");
ui.add(" < 主 页 >\n\n");
if(optError){
ui.add(" (!) 参数错误.\n");
}
Expand Down
8 changes: 4 additions & 4 deletions src/mod.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ namespace Mod{
}
auto info(Data){
CUI ui;
ui.add(" [ 关 于 ]\n\n");
ui.add(" < 关 于 >\n\n");
ui.add(" > 返回 ",Mod::exit,nullptr,CON_RED_PALE);
ui.add("\n[ 名称 ]\n");
ui.add("\n[名称]\n");
ui.add(" Computer Room Control Software Nemesis");
ui.add("\n[ 版本 ]\n");
ui.add("\n[版本]\n");
ui.add(" " VERSION_INFO);
ui.add("\n[ 仓库 ]\n");
ui.add("\n[仓库]\n");
ui.add(" https://github.com/MaxLHy0424/CRCSN");
ui.add("\n[许可证]\n");
ui.add(" MIT License");
Expand Down

0 comments on commit 94066dc

Please sign in to comment.