Fix missing newline on printf for customsavequick() failure

A missing newline in a printf() is annoying, it means the next line of
output is concatenated to the previous one.
This commit is contained in:
Misa
2020-07-11 14:12:17 -07:00
committed by Ethan Lee
parent 582aaa587e
commit 47eba09edb

View File

@@ -6114,7 +6114,7 @@ void Game::customsavequick(std::string savfile)
else
{
printf("Could Not Save game!\n");
printf("Failed: %s%s%s", saveFilePath.c_str(), levelfile.c_str(), ".vvv");
printf("Failed: %s%s%s\n", saveFilePath.c_str(), levelfile.c_str(), ".vvv");
}
}