Skip to content

Commit 55c5fc0

Browse files
committed
replace std::cout with ConsoleUtils::printNewLine()
1 parent 2f26c12 commit 55c5fc0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/PLAViewer/PLAViewer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ int main(int argc, char* argv[]) {
6060
std::cout << "PLA Savegame (" << argv[1] << ") is now readable." << std::endl;
6161

6262
// Display the full path of the output file of the PLA Savegame
63-
std::cout << "\b" << std::endl;
63+
ConsoleUtils::printNewLine();
6464
printf("Output file created at: %s\n", fs::absolute(inputSaveGame.stem().string() + ".txt").c_str());
6565

6666
// Exit message for PLAViewer
67-
std::cout << "\b" << std::endl;
67+
ConsoleUtils::printNewLine();
6868
std::cout << "Press Enter to exit PLAViewer.\n" << std::endl;
6969
(void)getchar();
7070
ConsoleUtils::clearConsole();

0 commit comments

Comments
 (0)