mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user