diff --git a/es-app/src/MetaData.cpp b/es-app/src/MetaData.cpp index f5d466b09..50d698e1e 100644 --- a/es-app/src/MetaData.cpp +++ b/es-app/src/MetaData.cpp @@ -22,7 +22,7 @@ MetaDataDecl gameDecls[] = { {"favorite", MD_BOOL, "false", false, "favorite", "enter favorite off/on"}, {"hidden", MD_BOOL, "false", false, "hidden", "enter hidden off/on" }, {"kidgame", MD_BOOL, "false", false, "kidgame", "enter kidgame off/on" }, - {"playcount", MD_INT, "0", true, "play count", "enter number of times played"}, + {"playcount", MD_INT, "0", false, "play count", "enter number of times played"}, {"lastplayed", MD_TIME, "0", true, "last played", "enter last played date"} }; const std::vector gameMDD(gameDecls, gameDecls + sizeof(gameDecls) / sizeof(gameDecls[0])); diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index 9ebda3dd7..73759063e 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -169,7 +169,7 @@ bool parseArgs(int argc, char* argv[]) freopen("CONOUT$", "wb", stdout); #endif std::cout << - "EmulationStation Desktop Edition, a graphical front-end for ROM browsing.\n" + "EmulationStation Desktop Edition, an emulator front-end with controller navigation and theming support.\n" "Version " << PROGRAM_VERSION_STRING << ", built " << PROGRAM_BUILT_STRING << "\n\n" "Command line arguments:\n" "--resolution [width] [height] Try and force a particular resolution\n" diff --git a/es-core/src/guis/GuiTextEditPopup.cpp b/es-core/src/guis/GuiTextEditPopup.cpp index 4c14bddb4..8814175b6 100644 --- a/es-core/src/guis/GuiTextEditPopup.cpp +++ b/es-core/src/guis/GuiTextEditPopup.cpp @@ -11,7 +11,7 @@ GuiTextEditPopup::GuiTextEditPopup(Window* window, const std::string& title, con addChild(&mBackground); addChild(&mGrid); - mTitle = std::make_shared(mWindow, Utils::String::toUpper(title), Font::get(FONT_SIZE_LARGE), 0x555555FF, ALIGN_CENTER); + mTitle = std::make_shared(mWindow, Utils::String::toUpper(title), Font::get(FONT_SIZE_MEDIUM), 0x555555FF, ALIGN_CENTER); mText = std::make_shared(mWindow); mText->setValue(initValue);