mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01: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:
parent
582aaa587e
commit
47eba09edb
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue