1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-27 16:57:25 +02:00

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 else
{ {
printf("Could Not Save game!\n"); 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");
} }
} }