File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99namespace fs = std::filesystem;
1010
1111void printHeader () {
12- const std::string versionNumber = " 0.4 .0" ;
12+ const std::string versionNumber = " 0.5 .0" ;
1313
1414 std::cout << " =========================" << std::endl;
1515 std::cout << " OBJDumper ver. " << versionNumber << std::endl;
@@ -87,10 +87,10 @@ int main() {
8787 std::getline (std::cin, inputFile);
8888
8989 // Ask user for output file format preference
90- std::cout << " Do you want to use 'Folder/Object.obj' format? (yes/no ): " ;
90+ std::cout << " Do you want to use 'Folder/Object.obj' format? (y/n ): " ;
9191 std::string preference;
9292 std::getline (std::cin, preference);
93- useSlash = (preference == " yes " );
93+ useSlash = (preference == " y " );
9494
9595 // Get user input for output location
9696 std::cout << " Enter the output file name: " ;
You can’t perform that action at this time.
0 commit comments