mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Change editor unsupported message to only appear when editor is selected
Showing the option on the "play a level" option feels to me as though inexperienced players would think they're not supposed to open the player levels, because the message says editor levels are unsupported, right? But the message is only referring to the level editor, so in my opinion, it's clearer to only show it there.
This commit is contained in:
parent
6549dc0113
commit
4e7bf86722
1 changed files with 9 additions and 6 deletions
|
@ -1663,6 +1663,8 @@ static void menurender(void)
|
|||
break;
|
||||
case Menu::playerworlds:
|
||||
if (game.editor_disabled)
|
||||
{
|
||||
if (game.currentmenuoption == 1)
|
||||
{
|
||||
if (SDL_GetHintBoolean("SteamDeck", SDL_FALSE))
|
||||
{
|
||||
|
@ -1673,6 +1675,7 @@ static void menurender(void)
|
|||
font::print_wrap(PR_CEN, -1, 180, loc::gettext("The level editor is not currently supported on this device, as it requires a keyboard and mouse to use."), tr, tg, tb);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
font::print_wrap(PR_CEN, -1, 180, loc::gettext("To install new player levels, copy the .vvvvvv files to the levels folder."), tr, tg, tb);
|
||||
|
|
Loading…
Reference in a new issue