mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Add more checks for checkpoint saving
This commit is contained in:
parent
a0bd2f3da4
commit
c2642dbdef
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ void Game::show_save_fail(void)
|
|||
|
||||
void Game::checkpoint_save(void)
|
||||
{
|
||||
if (checkpoint_saving && !inspecial())
|
||||
if (checkpoint_saving && !inspecial() && (!map.custommode || (map.custommode && map.custommodeforreal)) && !cliplaytest)
|
||||
{
|
||||
bool success = map.custommode ? customsavequick(cl.ListOfMetaData[playcustomlevel].filename) : savequick();
|
||||
gamesaved = success;
|
||||
|
|
Loading…
Reference in a new issue