1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 05:58:30 +02:00

Use hiddenname for hardestroom if roomname is empty

In earlier 2.3, if the roomname was empty, Dimension VVVVVV was used
instead. However, instead of doing that, it's better to just use the
hiddenname instead. Both because it's less hardcoded, and some rooms
have hidden names that aren't Dimension VVVVVV.
This commit is contained in:
Misa 2021-06-11 23:58:18 -07:00
parent 96660cd235
commit d292b64c6d

View File

@ -3962,7 +3962,7 @@ void Game::gethardestroom(void)
}
else if (map.roomname == "")
{
hardestroom = "Dimension VVVVVV";
hardestroom = map.hiddenname;
}
}
}