Browse Source

Updated the about box.

Steve Thielemann 3 years ago
parent
commit
b250fc7974
1 changed files with 5 additions and 2 deletions
  1. 5 2
      deck.cpp

+ 5 - 2
deck.cpp

@@ -1108,7 +1108,8 @@ door::Panel make_about(void) {
   123456789012345678901234567890123456789012345678901234567890-60
   This door was written by Bugz.
 
-  It is written in c++, only supports Linux, and replaces
+  It is written in c++, supports CP437 and unicode, and can
+  adjust to any size screen, only supports Linux, and replaces
   opendoors.
 
   It's written in c++, and replaces the outdated opendoors
@@ -1128,7 +1129,9 @@ door::Panel make_about(void) {
       std::make_unique<door::Line>("This door was written by Bugz.", W));
   about.addLine(std::make_unique<door::Line>("", W));
   about.addLine(std::make_unique<door::Line>(
-      "It is written in door++ using c++ and only supports Linux.", W));
+      "It is written in door++ using c++, understands CP437 and", W));
+  about.addLine(std::make_unique<door::Line>(
+      "unicode, adapts to screen sizes, and runs on Linux.", W));
   return about;
 }