Add version indicator.

This commit is contained in:
Steven Smith 2015-04-18 16:19:21 -07:00
parent d36899d35b
commit 395183b47b

View File

@ -73,6 +73,7 @@ int main(int argc, char **argv) {
}
std::stringstream stream;
stream << "FBI v1.3.2" << "\n";
stream << "Free Space: " << freeSpace << " bytes (" << std::fixed << std::setprecision(2) << freeSpace / 1024.0f / 1024.0f << "MB)" << "\n";
stream << "Destination: " << (destination == NAND ? "NAND" : "SD") << ", Mode: " << (mode == INSTALL_CIA ? "Install CIA" : mode == DELETE_CIA ? "Delete CIA" : mode == DELETE_TITLE ? "Delete Title" : "Launch Title") << "\n";
stream << "L - Switch Destination, R - Switch Mode" << "\n";