mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -3962,7 +3962,7 @@ void Game::gethardestroom(void)
|
|||||||
}
|
}
|
||||||
else if (map.roomname == "")
|
else if (map.roomname == "")
|
||||||
{
|
{
|
||||||
hardestroom = "Dimension VVVVVV";
|
hardestroom = map.hiddenname;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user